Skip to content

Commit 4ff8421

Browse files
committed
Codestyl fixes
1 parent c1ca586 commit 4ff8421

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

redis/utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
raise ImportError("hiredis package should be >= 3.0.0")
1313
HIREDIS_PACK_AVAILABLE = hasattr(hiredis, "pack_command")
1414
if not HIREDIS_PACK_AVAILABLE:
15-
raise ImportError("pack_command is not available in the current version of hiredis.")
15+
raise ImportError(
16+
"pack_command is not available in the current version of hiredis."
17+
)
1618
except ImportError:
1719
HIREDIS_AVAILABLE = False
1820
HIREDIS_PACK_AVAILABLE = False

0 commit comments

Comments
 (0)