Skip to content

Commit 55e6fc6

Browse files
committed
Default correct_tags to True
1 parent dfa5f7a commit 55e6fc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

coc/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class Client:
8888
correct_tags : :class:`bool`
8989
Whether the client should correct tags before requesting them from the API.
9090
This process involves stripping tags of whitespace and adding a `#` prefix if not present.
91-
Defaults to ``False``.
91+
Defaults to ``True``.
9292
9393
connector : :class:`aiohttp.BaseConnector`
9494
The aiohttp connector to use. By default this is ``None``.
@@ -131,7 +131,7 @@ def __init__(
131131
key_scopes: str = "clash",
132132
throttle_limit: int = 10,
133133
loop: asyncio.AbstractEventLoop = None,
134-
correct_tags: bool = False,
134+
correct_tags: bool = True,
135135
throttler=BasicThrottler,
136136
connector=None,
137137
timeout: float = 30.0,

0 commit comments

Comments
 (0)