improved version

This commit is contained in:
Maxim Kurnikov
2018-07-29 20:06:41 +03:00
parent c180555415
commit 89bb6eac75
160 changed files with 1007 additions and 607 deletions
+2 -5
View File
@@ -1,7 +1,4 @@
from typing import (
Any,
Optional,
)
from typing import Optional
class CheckMessage:
@@ -11,7 +8,7 @@ class CheckMessage:
level: int,
msg: str,
hint: Optional[str] = ...,
obj: Any = ...,
obj: object = ...,
id: Optional[str] = ...
) -> None: ...
def __str__(self) -> str: ...