Skip to content

Commit 576e8c1

Browse files
🎨 style(style): update parameter names from __kwargs to _kwargs for consistency and readability
1 parent 391f86b commit 576e8c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎squarecloud/app.py‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ def wrapper(
433433

434434
@_update_cache
435435
@_notify_listener(Endpoint.logs())
436-
async def logs(self, *_args, **__kwargs) -> LogsData:
436+
async def logs(self, *_args, **_kwargs) -> LogsData:
437437
"""
438438
The logs method is used to get the application's logs.
439439
@@ -446,7 +446,7 @@ async def logs(self, *_args, **__kwargs) -> LogsData:
446446

447447
@_update_cache
448448
@_notify_listener(Endpoint.app_status())
449-
async def status(self, *_args, **__kwargs) -> StatusData:
449+
async def status(self, *_args, **_kwargs) -> StatusData:
450450
"""
451451
The status function returns the status of an application.
452452
@@ -459,7 +459,7 @@ async def status(self, *_args, **__kwargs) -> StatusData:
459459

460460
@_update_cache
461461
@_notify_listener(Endpoint.backup())
462-
async def backup(self, *_args, **__kwargs) -> Backup:
462+
async def backup(self, *_args, **_kwargs) -> Backup:
463463
"""
464464
The backup function is used to create a backup of the application.
465465

0 commit comments

Comments
 (0)