Skip to content

Commit

Permalink
add ClassVar annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
eggplants committed Jul 17, 2023
1 parent 71dc737 commit f9ac853
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deepl/deepl.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import annotations

import asyncio
from typing import TYPE_CHECKING, Any
from typing import TYPE_CHECKING, Any, ClassVar
from urllib.parse import quote

from install_playwright import install
Expand All @@ -23,7 +23,7 @@ class DeepLCLIPageLoadError(Exception):


class DeepLCLI:
fr_langs = {
fr_langs: ClassVar[set[str]] = {
"auto",
"bg",
"cs",
Expand Down

0 comments on commit f9ac853

Please sign in to comment.