We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cc2e49 commit 8775e04Copy full SHA for 8775e04
1 file changed
aw_core/log.py
@@ -62,8 +62,10 @@ def _get_latest_log_files(name, testing=False) -> List[str]: # pragma: no cover
62
63
64
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."""
+ """
+ Returns the filename of the last logfile with `name`.
67
+ Useful when you want to read the logfile of another ActivityWatch service.
68
69
last_logs = _get_latest_log_files(name, testing=testing)
70
return last_logs[0] if last_logs else None
71
0 commit comments