Server Info (please complete the following information):
OS: Debian 12
Browser: Edge
RMM Version (as shown in top left of web UI): 19.2
Installation Method:
[X] Standard
[ ] Standard with --insecure flag at install
[ ] Docker
Describe the bug
My code editor flags the multi-line f-string format as incorrect, even though the code executes as expected and produces the correct output. This issue may be related to the editor's syntax checking or linting configuration.
To Reproduce
Steps to reproduce the behavior:
Open the code file in the editor.
Paste the provided code snippet.
Observe the syntax highlighting or error messages from the code editor.
Expected behavior
The code editor should recognize the multi-line f-string as a valid syntax and not flag it as incorrect.
Multi-line f-strings are a valid feature in Python 3.6 and later, and should be supported by the editor.
Screenshots
Additional context
print(f"""
Backup Status Report:
- VM or Computer: '{tmpName}'
- Latest Restore Point Date/Time: '{latest_restore_point}'
- Number of Restore Points Available: {len(restorePoints)}
- Total Size of Restore Points: {totalRestorePointSize}
The latest restore point date/time indicates when the most recent backup was made.
""")
Server Info (please complete the following information):
Installation Method:
--insecure
flag at installDescribe the bug My code editor flags the multi-line f-string format as incorrect, even though the code executes as expected and produces the correct output. This issue may be related to the editor's syntax checking or linting configuration.
To Reproduce Steps to reproduce the behavior:
Expected behavior The code editor should recognize the multi-line f-string as a valid syntax and not flag it as incorrect.
Multi-line f-strings are a valid feature in Python 3.6 and later, and should be supported by the editor.
Screenshots
Additional context