Skip to content

Commit

Permalink
style: fix flake8 settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mysterious-ben committed May 3, 2021
1 parent 14c8a99 commit c544a34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[flake8]
ignore = E266, E501, W503, F403, F401
ignore = W503
max-line-length = 99
exclude = .git, .github, .eggs, __pycache__, build, dist, notebooks, .ipynb_checkpoints, data, logs
per-file-ignores = __init__.py:F401
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ dist/
*.eggs
*.egg-info/
*.pyc
.coverage

.idea/
.vscode/
Expand Down
4 changes: 2 additions & 2 deletions xmlrecords/src/xmlrecords.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from dataclasses import dataclass
from typing import Dict, List, Optional, TypedDict
# from dataclasses import dataclass
from typing import Dict, List, Optional
from xml.etree import ElementTree


Expand Down

0 comments on commit c544a34

Please sign in to comment.