diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-02-24 18:59:55 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-02-24 18:59:55 +0100 |
| commit | 13a815f78d6165b8c836a23275f03dd2b4d71734 (patch) | |
| tree | 7b3f4bee259b3e28f9d7f6fd9aa72a281a414f14 | |
| parent | d6f2e6ff72ea55ce72491e3ba2c7513fda15b2b0 (diff) | |
| download | allocbench-13a815f78d6165b8c836a23275f03dd2b4d71734.tar.gz allocbench-13a815f78d6165b8c836a23275f03dd2b4d71734.zip | |
remove newline in front of ybar axis attribute
| -rw-r--r-- | src/plots.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plots.py b/src/plots.py index 61fd219..a6964e8 100644 --- a/src/plots.py +++ b/src/plots.py @@ -516,7 +516,7 @@ def pgfplot(bench, perms, xexpr, yexpr, axis_attr="", bar=False, title = title.format(**label_substitutions) if bar: - axis_attr = f"\n\tbar,\n{axis_attr}" + axis_attr = f"\tybar,\n{axis_attr}" color_definitions = "" plots = "" |
