Skip to content

Commit 7a39f0b

Browse files
author
Michael Brewer
authored
fix: Fix indents from accepting github changes
1 parent ad2e709 commit 7a39f0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aws_lambda_powertools/logging/logger.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,8 @@ def _get_log_level(level: Union[str, int]) -> Union[str, int]:
290290
if isinstance(level, int):
291291
return level
292292

293-
log_level: str = level or os.getenv("LOG_LEVEL", logging.INFO)
294-
return log_level.upper()
293+
log_level: str = level or os.getenv("LOG_LEVEL", logging.INFO)
294+
return log_level.upper()
295295

296296
@staticmethod
297297
def _get_caller_filename():

0 commit comments

Comments
 (0)