(*args, **kwargs)
| 1033 | # dates and ones that return lists of dates. |
| 1034 | if not returns_list: |
| 1035 | def inner_func(*args, **kwargs): |
| 1036 | args, kwargs = normalize_args(args, kwargs) |
| 1037 | dt = f(*args, **kwargs) |
| 1038 | return self._attach_tzinfo(dt, self._tzinfo) |
| 1039 | else: |
| 1040 | def inner_func(*args, **kwargs): |
| 1041 | args, kwargs = normalize_args(args, kwargs) |
nothing calls this directly
no test coverage detected