We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cbc8d6 commit 673acc1Copy full SHA for 673acc1
packages/settings-library/src/settings_library/utils_service.py
@@ -120,11 +120,9 @@ def _compose_url(
120
if value is not None:
121
kwargs[k] = value
122
123
- assert all(
124
- isinstance(v, str | int) or v is None for v in kwargs.values()
125
- ) # nosec
+ assert all(isinstance(v, str | int) or v is None for v in kwargs.values()) # nosec
126
127
- composed_url = str(AnyUrl.build(**kwargs))
+ composed_url = str(AnyUrl.build(**kwargs)) # pylint: disable=missing-kwoa
128
return composed_url.rstrip("/")
129
130
def _build_api_base_url(self, *, prefix: str) -> str:
0 commit comments