mirror of
https://github.com/elisspace/core.git
synced 2026-09-21 18:17:35 +00:00
* Enable pylint unnecessary-pass * Process review suggestions * Fix smhi tests
10 lines
218 B
Python
10 lines
218 B
Python
"""Custom yaml object types."""
|
|
|
|
|
|
class NodeListClass(list):
|
|
"""Wrapper class to be able to add attributes on a list."""
|
|
|
|
|
|
class NodeStrClass(str):
|
|
"""Wrapper class to be able to add attributes on a string."""
|