Skip to content

Commit

Permalink
🔨 Correcting imports with isort
Browse files Browse the repository at this point in the history
  • Loading branch information
williamcanin committed Jan 10, 2022
1 parent 0bd69cc commit 21c16cc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions snakypy/helpers/subprocess/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
from getpass import getpass
from shutil import which
from subprocess import PIPE, Popen, run
from typing import Any, Optional, Union
from shutil import which

from snakypy.helpers.ansi import FG, NONE
from snakypy.helpers.console import printer
from snakypy.helpers.decorators import denying_os, only_linux


# The use of static typing in this function in conjunction with "inter", caused
# errors when using Mypy, perhaps because at run time the inter would always return None,
# so it is recommended in the file mypy.ini, to use the option "strict_optional = False".
Expand Down

0 comments on commit 21c16cc

Please sign in to comment.