Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-- committed Oct 3, 2024
1 parent 07744ad commit eda3545
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion upath/implementations/sftp.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from __future__ import annotations

import sys
from typing import TYPE_CHECKING
from typing import Any
from typing import Generator
from typing import TYPE_CHECKING

if TYPE_CHECKING:
if sys.version_info >= (3, 11):
Expand Down
2 changes: 1 addition & 1 deletion upath/implementations/smb.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import os
import sys
import warnings
from typing import Any
from typing import TYPE_CHECKING
from typing import Any

if TYPE_CHECKING:
if sys.version_info >= (3, 11):
Expand Down

0 comments on commit eda3545

Please sign in to comment.