Skip to content

Commit

Permalink
Issue 48 remove erroneous debug print statement (#49)
Browse files Browse the repository at this point in the history
* Remove erroneous debug print statement
* Bump version to 0.2.1
  • Loading branch information
jtv8 authored Dec 27, 2020
1 parent fcaddde commit f39237e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion wysdom/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (0, 2, 0)
VERSION = (0, 2, 1)

__version__ = '.'.join(map(str, VERSION))
2 changes: 0 additions & 2 deletions wysdom/mixins/RegistersSubclasses.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ def __init_subclass__(
cls.__registered_subclasses__[name].append(cls)
cls.registered_name = name

print((cls, cls.__registered_subclasses__), flush=True)

def __init__(self, *args: Any, **kwargs: Any) -> None:
super().__init__(*args, **kwargs)

Expand Down

0 comments on commit f39237e

Please sign in to comment.