diff options
author | Martin Fischer <martin@push-f.com> | 2022-02-24 08:57:28 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-02-24 09:00:38 +0100 |
commit | 743b5b586b8910b4d8536a8e1b4ff9b74e346f6c (patch) | |
tree | 3d9a0e8228e8f9677155b3d2cce6c15cae759ed6 /puzzles/20_enum_in_literal.py | |
parent | 92ad22ca77833d5c5c8841ece9368a6843e20c8d (diff) |
add puzzle: x: Literal[3] = 1 + 2
Diffstat (limited to 'puzzles/20_enum_in_literal.py')
-rw-r--r-- | puzzles/20_enum_in_literal.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/puzzles/20_enum_in_literal.py b/puzzles/20_enum_in_literal.py deleted file mode 100644 index a743168..0000000 --- a/puzzles/20_enum_in_literal.py +++ /dev/null @@ -1,8 +0,0 @@ -import enum -from typing import Literal - -class Color(enum.Enum): - Red = enum.auto() - Blue = enum.auto() - -c: Literal[Color.Red] = Color.Blue # error |