We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b63c49 commit e890210Copy full SHA for e890210
probscale/viz.py
@@ -1,4 +1,4 @@
1
-import numpy
+import numpy
2
from matplotlib import pyplot
3
from matplotlib import scale
4
from scipy import stats
@@ -36,7 +36,7 @@ def _check_fit_arg(arg, argname):
36
37
def _check_ax_name(axname, argname):
38
valid_args = ['x', 'y']
39
- if axname not in valid_args:
+ if axname.lower() not in valid_args:
40
msg = 'Invalid value for {} ({}). Must be on of {}.'
41
raise ValueError(msg.format(argname, arg, valid_args))
42
0 commit comments