Skip to content

Commit

Permalink
Fixed a small linting typo (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
clintval committed Jul 31, 2019
1 parent 822d6fd commit b4f1025
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sample_sheet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
from requests.structures import CaseInsensitiveDict

try:
from smart_open import open # Migration for smart_open 1.8.1 # type: ignore
from smart_open import (
open,
) # Migration for smart_open 1.8.1 # type: ignore
except ImportError:
from smart_open import smart_open as open # type: ignore
except ImportError:
Expand Down

0 comments on commit b4f1025

Please sign in to comment.