diff --git a/.flake8 b/.flake8 index 97fa1d1..e3621b6 100644 --- a/.flake8 +++ b/.flake8 @@ -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 diff --git a/.gitignore b/.gitignore index 0ef9a7e..43b2dd1 100755 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ dist/ *.eggs *.egg-info/ *.pyc +.coverage .idea/ .vscode/ diff --git a/xmlrecords/src/xmlrecords.py b/xmlrecords/src/xmlrecords.py index daf33f9..3eff1db 100644 --- a/xmlrecords/src/xmlrecords.py +++ b/xmlrecords/src/xmlrecords.py @@ -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