Skip to content

Commit

Permalink
Ignora erro de flake8 E203
Browse files Browse the repository at this point in the history
  • Loading branch information
rhenanbartels committed Apr 7, 2021
1 parent 728a8d9 commit e916c64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion brasilio_auth/scripts/migrate_wrong_usernames.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def possible_usernames(username: str, email: str, n_suffix: int = 10) -> Tuple[s
username = username[:-1]
if "@" in username:
stop = username.find("@")
before, after = username[:stop], username[stop + 1:]
before, after = username[:stop], username[stop + 1 :]
if "." in after:
username = before
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[flake8]
max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,docker/postgresql/data
ignore=I001,I003,I004,E231,E501
ignore=I001,I003,I004,E231,E501,E203

0 comments on commit e916c64

Please sign in to comment.