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 d293ef9 commit a0153b3Copy full SHA for a0153b3
adafruit_argv_file.py
@@ -50,7 +50,7 @@ def argv_filename(python_code_filepath: str, file_location: str = "/saves/"):
50
:return: The argv filename.
51
"""
52
path = Path(python_code_filepath)
53
- return f"{file_location}.{path.absolute().replace('/', "_")}.argv"
+ return f"{file_location}.{path.absolute().replace("/", "_")}.argv"
54
55
56
def read_argv(python_code_filepath: str, file_location: str = "/saves/") -> Optional[list]:
0 commit comments