Type annotations for Enum value
Type hinting the Color class should work:
def get_color_return_something(some_color: Color):
print(some_color.value)
def get_color_return_something(some_color: Color):
pass
Type hinting the Color class should work:
def get_color_return_something(some_color: Color):
print(some_color.value)
def get_color_return_something(some_color: Color):
pass