Skip to content

Commit

Permalink
corrected version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexviquez committed Feb 7, 2024
1 parent 9183549 commit 19b84e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions mati/types/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ class PageType(SerializableEnum):

@dataclass
class BaseModel:
def __init__(self, **_) -> None: # pragma: no cover
...

@classmethod
def _filter_excess_fields(cls, obj_dict: Dict) -> None:
excess = set(obj_dict.keys()) - {f.name for f in fields(cls)}
Expand Down
2 changes: 1 addition & 1 deletion mati/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.6.dev5'
__version__ = '2.0.6'

0 comments on commit 19b84e6

Please sign in to comment.