From b8289a283912d91fece039d5db4d7603a70b9942 Mon Sep 17 00:00:00 2001 From: Frank Sauerburger <f.sauerburger@cern.ch> Date: Wed, 26 Jun 2019 14:33:41 +0200 Subject: [PATCH] Fix doctest after renaming type_to_histtype --- nnfwtbn/plot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nnfwtbn/plot.py b/nnfwtbn/plot.py index e15344e..1f9591c 100644 --- a/nnfwtbn/plot.py +++ b/nnfwtbn/plot.py @@ -38,9 +38,9 @@ def _type_to_histtype(type): """ Returns the matplotlib histogram type for a given process plotting type. - >>> type_to_histtype("fill") + >>> _type_to_histtype("fill") 'stepfilled' - >>> type_to_histtype("line") + >>> _type_to_histtype("line") 'step' """ type_map = {"fill": "stepfilled", "line": "step"} -- GitLab