diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-07-13 17:17:20 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-07-13 17:17:20 +0200 |
| commit | 0825b2b53406bb4acf9d3857a1f846efa845877e (patch) | |
| tree | 72b43dcaf0c3d7d0b9f7028553c2bf71f8a4b3df /summarize.py | |
| parent | 20eb9d1661c058476f80728b92956a76f035a27d (diff) | |
| download | allocbench-0825b2b53406bb4acf9d3857a1f846efa845877e.tar.gz allocbench-0825b2b53406bb4acf9d3857a1f846efa845877e.zip | |
[refactoring] fix or ignore many pylint hints
* Add missing docstrings
* Remove unused imports
* fix line-to-long
* fix some typos
* ignore global-statement
* ignore wrong-import-order for scripts under /scripts
Diffstat (limited to 'summarize.py')
| -rwxr-xr-x | summarize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/summarize.py b/summarize.py index 2c1a27c..df5c464 100755 --- a/summarize.py +++ b/summarize.py @@ -208,7 +208,7 @@ def main(): allocbench.plots.latex_custom_preamble = args.latex_preamble if not os.path.isdir(args.results): - logger.critical(f"%s is no directory", args.results) + logger.critical("%s is no directory", args.results) sys.exit(1) set_current_result_dir(args.results) |
