diff options
author | Martin Fischer <martin@push-f.com> | 2022-02-24 08:03:07 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-02-24 08:03:07 +0100 |
commit | c0db4ed95908c0774815da22d4e810c2a5a7a266 (patch) | |
tree | 830aaa3f3f2406b98acb59b67b25e7d02bafb9b0 /puzzles/40_recursive_types.py | |
parent | 7c914668646504077caae217ca13332f6244f7d9 (diff) |
prefix numbers to puzzles
Diffstat (limited to 'puzzles/40_recursive_types.py')
-rw-r--r-- | puzzles/40_recursive_types.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/puzzles/40_recursive_types.py b/puzzles/40_recursive_types.py new file mode 100644 index 0000000..5de796c --- /dev/null +++ b/puzzles/40_recursive_types.py @@ -0,0 +1,3 @@ +from typing import Union + +Foo = list[Union['Foo', int]] |