Skip to content

Commit 8775e04

Browse files
committed
style: fixed code formatting
1 parent 1cc2e49 commit 8775e04

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

aw_core/log.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,10 @@ def _get_latest_log_files(name, testing=False) -> List[str]: # pragma: no cover
6262

6363

6464
def get_latest_log_file(name, testing=False) -> Optional[str]: # pragma: no cover
65-
"""Returns the filename of the last logfile with `name`.
66-
Useful when you want to read the logfile of another ActivityWatch service."""
65+
"""
66+
Returns the filename of the last logfile with `name`.
67+
Useful when you want to read the logfile of another ActivityWatch service.
68+
"""
6769
last_logs = _get_latest_log_files(name, testing=testing)
6870
return last_logs[0] if last_logs else None
6971

0 commit comments

Comments
 (0)