We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
according to pep-8, one indentation should equal 4 spaces
there is proper formatted indent on lines 43-44, but on lines 54-55 there is broken 8 spaces indent
outlook-account-creator/main.py
Lines 54 to 55 in a262206
please consider using code formatter, for example ruff or black
you can try this:
python -m pip install ruff python -m ruff format main.py
this should fix all indentation problems
also consider to sort imports:
python -m ruff check --select I --fix
The text was updated successfully, but these errors were encountered:
No branches or pull requests
according to pep-8, one indentation should equal 4 spaces
there is proper formatted indent on lines 43-44, but on lines 54-55 there is broken 8 spaces indent
outlook-account-creator/main.py
Lines 54 to 55 in a262206
please consider using code formatter, for example ruff or black
you can try this:
this should fix all indentation problems
also consider to sort imports:
The text was updated successfully, but these errors were encountered: