Skip to content
This repository was archived by the owner on May 22, 2019. It is now read-only.

Commit 1ee9c66

Browse files
committed
remove leftover python 3.6 variable annotation syntax
1 parent 9e3be5c commit 1ee9c66

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='whither',
6-
version='0.2.2',
6+
version='0.2.3',
77
packages=[
88
'whither',
99
'whither.base',

whither/base/objects.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def _register_main_component(self, name: str) -> None:
9494

9595
class Application(BaseObject):
9696

97-
windows: ClassVar[list] = []
97+
windows = [] # type: ClassVar[list]
9898

9999
def __init__(self, name: str, *args, **kwargs) -> None:
100100
global _APP_INSTANCE

0 commit comments

Comments
 (0)