Skip to content

Commit 162d529

Browse files
committed
Merge remote-tracking branch 'origin/main' into dependabot/pip/pylint-3.0.3
2 parents 5bdff01 + 10148aa commit 162d529

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019-2022 Meili SAS
3+
Copyright (c) 2019-2024 Meili SAS
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

meilisearch/_httprequests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def __validate(request: requests.Response) -> Any:
119119

120120

121121
@lru_cache(maxsize=1)
122-
def _build_user_agent(client_agents: Optional[Tuple[str]] = None) -> str:
122+
def _build_user_agent(client_agents: Optional[Tuple[str, ...]] = None) -> str:
123123
user_agent = qualified_version()
124124
if not client_agents:
125125
return user_agent

meilisearch/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(
3333
url: str,
3434
api_key: Optional[str] = None,
3535
timeout: Optional[int] = None,
36-
client_agents: Optional[Tuple[str]] = None,
36+
client_agents: Optional[Tuple[str, ...]] = None,
3737
) -> None:
3838
"""
3939
Parameters

meilisearch/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __init__(
4444
url: str,
4545
api_key: Optional[str] = None,
4646
timeout: Optional[int] = None,
47-
client_agents: Optional[Tuple[str]] = None,
47+
client_agents: Optional[Tuple[str, ...]] = None,
4848
) -> None:
4949
"""
5050
Parameters

0 commit comments

Comments
 (0)