Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Oct 11, 2023
1 parent f971854 commit 9a2357d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion click_extra/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
if sys.version_info >= (3, 11):
import tomllib
else:
import tomli as tomllib # type: ignore[import]
import tomli as tomllib # type: ignore[import-not-found]

import commentjson as json
import requests
Expand Down
2 changes: 1 addition & 1 deletion click_extra/tests/test_pygments.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
if sys.version_info >= (3, 11):
import tomllib
else:
import tomli as tomllib # type: ignore[import]
import tomli as tomllib # type: ignore[import-not-found]

import requests
from boltons.strutils import camel2under
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
if sys.version_info >= (3, 11):
import tomllib
else:
import tomli as tomllib # type: ignore[import]
import tomli as tomllib # type: ignore[import-not-found]

project_path = Path(__file__).parent.parent.resolve()

Expand Down

0 comments on commit 9a2357d

Please sign in to comment.