-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
expected_mypy_37.txt
32 lines (32 loc) · 2.12 KB
/
expected_mypy_37.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
tryit.py:21: error: Unsupported operand types for < ("NaiveDateTime" and "AwareDateTime") [operator]
tryit.py:21: note: Following member(s) of "AwareDateTime" have conflicts:
tryit.py:21: note: Expected:
tryit.py:21: note: def timetz(self) -> Time[None]
tryit.py:21: note: Got:
tryit.py:21: note: def timetz(self) -> Time[tzinfo]
tryit.py:21: note: tzinfo: expected "None", got "tzinfo"
tryit.py:23: error: Incompatible types in assignment (expression has type "AwareDateTime", variable has type "NaiveDateTime") [assignment]
tryit.py:23: note: Following member(s) of "AwareDateTime" have conflicts:
tryit.py:23: note: Expected:
tryit.py:23: note: def timetz(self) -> Time[None]
tryit.py:23: note: Got:
tryit.py:23: note: def timetz(self) -> Time[tzinfo]
tryit.py:23: note: tzinfo: expected "None", got "tzinfo"
tryit.py:26: error: Incompatible types in assignment (expression has type "NaiveDateTime", variable has type "AwareDateTime") [assignment]
tryit.py:26: note: Following member(s) of "NaiveDateTime" have conflicts:
tryit.py:26: note: Expected:
tryit.py:26: note: def timetz(self) -> Time[tzinfo]
tryit.py:26: note: Got:
tryit.py:26: note: def timetz(self) -> Time[None]
tryit.py:26: note: tzinfo: expected "tzinfo", got "None"
tryit.py:34: error: Incompatible types in assignment (expression has type "NaiveDateTime", variable has type "Date") [assignment]
tryit.py:35: error: Incompatible types in assignment (expression has type "AwareDateTime", variable has type "Date") [assignment]
tryit.py:48: error: "tzinfo" has no attribute "key" [attr-defined]
tryit.py:53: error: Incompatible types in assignment (expression has type "DateTime[timezone]", variable has type "NaiveDateTime") [assignment]
tryit.py:53: note: Following member(s) of "DateTime[timezone]" have conflicts:
tryit.py:53: note: Expected:
tryit.py:53: note: def timetz(self) -> Time[None]
tryit.py:53: note: Got:
tryit.py:53: note: def timetz(self) -> Time[timezone]
tryit.py:53: note: tzinfo: expected "None", got "timezone"
Found 7 errors in 1 file (checked 1 source file)