SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit e7392778 authored by Geert Kapteijns's avatar Geert Kapteijns
Browse files

Make theses/models.py PEP8 compliant

I've opted for hanging indentation

foo = long_function_name(
    var_one, var_two,
    var_three, var_four)

instead of aligning with opening delimiter

foo = long_function_name(var_one, var_two,
                         var_three, var_four)

because the former makes more sense to me. See
https://www.python.org/dev/peps/pep-0008/#indentation
parent b8921217
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment