You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to get through module report not found errors, report module needs to be relative imported (from .report instead of from report in runner.py)
line 71 in runner.py, method _get_report , had to add encoding="utf-8" to open method to get rid of UnicodeDecodeError
line 75 in runner.py, method _clean, had to wrap os.remove with try except for OSError to get rid of WIn32 Permission Error
-finally line 95 in report.py had to wrap v.get('score', 0) with or 0 => (v.get('score', 0) or 0) as get method returned None although it had a default value...
Followed the instructions and your package isn't working. It looks great and I hope to get it working for what I am trying to do!
The text was updated successfully, but these errors were encountered: