So instead of: ```python @symmetric(case_fold=True) @property def name(self): return "value" ``` you could just do: ```python @symmetric(case_fold=True) def name(self): return "value" ``` Should be lenient enough to work in either case.
So instead of:
you could just do:
Should be lenient enough to work in either case.