Skip to content

Commit 614a42e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f81bc93 commit 614a42e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

exodus_lambda/functions/base.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ def index(self):
6161

6262
@property
6363
def disable_mirrored_reads(self):
64-
if str(self.conf.get("disable_mirrored_reads", "false")).lower() in ('1', 'true'):
64+
if str(self.conf.get("disable_mirrored_reads", "false")).lower() in (
65+
"1",
66+
"true",
67+
):
6568
return True
6669
return False
6770

0 commit comments

Comments
 (0)