Acode
Acode copied to clipboard
Format on Save Removes indentation on Python files.
Description: Setting the editor to format on save ends up removing indentation on python files.
How to Reproduce Error:
- Open Acode Editor
- Click the 3-vertical dots on the top-right corner
- Click Settings > Editor Settings
- Locate "Format on save" and click to Check the Box
- Exit from the settings.
- Create a new python file with the following code:
for i in range(10):
print(i)
- Save the file.
Expected Behaviour: Code should remain unchanged.
Result: Indentation is removed when saved such that the code becomes:
for i in range(10):
print(i)