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 385b41d commit b40ab4bCopy full SHA for b40ab4b
src/seclab_taskflow_agent/path_utils.py
@@ -43,5 +43,14 @@ def log_dir() -> str:
43
appauthor="GitHubSecurityLab",
44
ensure_exists=True)
45
46
-def log_file_name(filename: str):
+def log_file_name(filename: str) -> str:
47
+ """
48
+ Construct the full path to a log file in the user log directory.
49
+
50
+ Parameters:
51
+ filename (str): The name of the log file.
52
53
+ Returns:
54
+ str: The full path to the log file in the user log directory.
55
56
return os.path.join(log_dir(), filename)
0 commit comments