Skip to content

Commit 67d304d

Browse files
FIX code format
1 parent 262eeaa commit 67d304d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pds/ingress/util/log_util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,12 +395,12 @@ def flush(self):
395395
try:
396396
# Strip ANSI escape codes from log messages before sending to CloudWatch
397397
ansi_escape = re.compile(r'\x1b\[[0-9;]*m')
398-
398+
399399
log_events = [
400400
{
401401
"timestamp": int(round(record.created)) * MILLI_PER_SEC,
402402
"message": ansi_escape.sub(
403-
'',
403+
'',
404404
f"{record.levelname} {record.threadName} {record.name}:{record.funcName} {record.message}"
405405
),
406406

0 commit comments

Comments
 (0)