- kein Hollertee
- kein Honig
- kein Aspro
- kein Ecchinacea
(verstärken die Imunantwort - will man nicht bei Covid19)
- kein Ibuprofen
import collections | |
from enum import IntEnum | |
from copy import copy | |
import click | |
class EnumChoice(click.Choice): | |
def __init__(self, enum, case_sensitive=False, use_value=False): | |
self.enum = enum |