Skip to content

Commit 275aff2

Browse files
author
Simon Prickett
committed
Fixed linter issue.
1 parent 7fa62da commit 275aff2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aredis_om/checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@lru_cache(maxsize=None)
88
async def check_for_command(conn, cmd):
99
cmd_info = await conn.execute_command("command", "info", cmd)
10-
return not None in cmd_info
10+
return None not in cmd_info
1111

1212

1313
@lru_cache(maxsize=None)

0 commit comments

Comments
 (0)