Re4matting

This commit is contained in:
3wc
2023-11-18 11:23:54 +00:00
parent b62eb5cb22
commit 26b8b5f334
3 changed files with 12 additions and 16 deletions

View File

@ -177,7 +177,7 @@ class Timesheet(BaseAPI):
@staticmethod
def list_by(api, **kwargs):
kwargs['size'] = 10000
kwargs["size"] = 10000
return [
Timesheet(
api,
@ -189,10 +189,7 @@ class Timesheet(BaseAPI):
t["description"],
t["tags"],
)
for t in api.get(
"timesheets",
params=kwargs
)
for t in api.get("timesheets", params=kwargs)
]
@staticmethod