Skip to content

Commit 6d7e2ab

Browse files
committed
chore: fix formatting
1 parent 5421541 commit 6d7e2ab

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/firebase_functions/logger.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,9 @@ def _get_write_file(severity: LogSeverity) -> _typing.TextIO:
229229

230230
def write(entry: LogEntry) -> None:
231231
write_file = _get_write_file(entry["severity"])
232-
print(_json.dumps(_coerce_json_safe(_remove_circular(entry)), ensure_ascii=False), file=write_file)
232+
print(
233+
_json.dumps(_coerce_json_safe(_remove_circular(entry)), ensure_ascii=False), file=write_file
234+
)
233235

234236

235237
def debug(*args, **kwargs) -> None:

0 commit comments

Comments
 (0)