Skip to content

Commit

Permalink
remove type: ignore from ImportError
Browse files Browse the repository at this point in the history
  • Loading branch information
dholth committed Sep 19, 2024
1 parent 3cea22d commit 66f5b60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions binstar_client/utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
try:
from conda.gateways import anaconda_client as c_client
except ImportError:
c_client = None # type: ignore
c_client = None

try:
from conda.gateways import anaconda_client as c_client
except ImportError:
c_client = None # type: ignore
c_client = None

from binstar_client.errors import BinstarError
from binstar_client.utils import conda, paths
Expand Down

0 comments on commit 66f5b60

Please sign in to comment.