Skip to content
Snippets Groups Projects
Unverified Commit b8289a28 authored by Frank Sauerburger's avatar Frank Sauerburger
Browse files

Fix doctest after renaming type_to_histtype

parent 00a795be
No related branches found
No related tags found
1 merge request!1Resolve "Automatic generation of documentation"
Pipeline #12319 passed
......@@ -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"}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment