diff options
author | Martin Fischer <martin@push-f.com> | 2022-02-25 07:14:34 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-02-25 07:14:47 +0100 |
commit | fe40934a1c98150ee6684a7cdd21bac640fd2ac8 (patch) | |
tree | 9eaaa41acd07c1106cae0ac353b687545bd9af73 /puzzles | |
parent | ef72153e72e7e8a27d01737d245b362ef843f12e (diff) |
add missing type param puzzle & test pyright strict
Diffstat (limited to 'puzzles')
-rw-r--r-- | puzzles/03_missing_type_param.py | 1 | ||||
-rw-r--r-- | puzzles/04_type_error_in_untyped_def.py (renamed from puzzles/03_type_error_in_untyped_def.py) | 0 |
2 files changed, 1 insertions, 0 deletions
diff --git a/puzzles/03_missing_type_param.py b/puzzles/03_missing_type_param.py new file mode 100644 index 0000000..a2bcf80 --- /dev/null +++ b/puzzles/03_missing_type_param.py @@ -0,0 +1 @@ +x: list = [] # maybe error diff --git a/puzzles/03_type_error_in_untyped_def.py b/puzzles/04_type_error_in_untyped_def.py index 6c87c71..6c87c71 100644 --- a/puzzles/03_type_error_in_untyped_def.py +++ b/puzzles/04_type_error_in_untyped_def.py |