Core: Maintain 3.5.3 compatibility

This commit is contained in:
Mike Auty
2020-07-30 22:27:26 +01:00
parent b04fd7c9bd
commit 03877ef2ec
@@ -696,7 +696,7 @@ class VersionableInterface:
All version number should use semantic versioning
"""
_version: Tuple[int, int, int] = (0, 0, 0)
_version = (0, 0, 0) # type: Tuple[int, int, int]
@classproperty
def version(cls) -> Tuple[int, int, int]: