Skip to content

Commit 40b6e05

Browse files
committed
fix lint issues
1 parent abd7ca2 commit 40b6e05

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lambdas/shared/src/common/clients.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
logging.basicConfig(level=logging.INFO)
77
root_logger = logging.getLogger()
88
root_logger.setLevel(logging.INFO)
9+
910
for handler in root_logger.handlers:
10-
# make sure handler level is not higher than INFO
11-
try:
12-
handler.setLevel(logging.INFO)
13-
except Exception:
14-
pass
11+
try:
12+
handler.setLevel(logging.INFO)
13+
except Exception:
14+
pass
1515

1616
# Export the configured root logger for modules to use
1717
logger = root_logger

0 commit comments

Comments
 (0)