Skip to content

Commit c6c313b

Browse files
adamtheturtleclaude
andcommitted
Fix pylint issues in transports and vumark_service
Make VuMarkService.__init__ keyword-only to fix too-many-positional-arguments. Suppress unnecessary-ellipsis on Transport protocol method body. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e9041ec commit c6c313b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/vws/transports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def __call__(
4242
Returns:
4343
A Response populated from the HTTP response.
4444
"""
45-
...
45+
... # pylint: disable=unnecessary-ellipsis
4646

4747

4848
@beartype(conf=BeartypeConf(is_pep484_tower=True))

src/vws/vumark_service.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ class VuMarkService:
3030

3131
def __init__(
3232
self,
33+
*,
3334
server_access_key: str,
3435
server_secret_key: str,
3536
base_vws_url: str = "https://vws.vuforia.com",

0 commit comments

Comments
 (0)