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 a923581 commit f6b930bCopy full SHA for f6b930b
pymc/data.py
@@ -634,7 +634,7 @@ def Data(
634
arr = pandas_to_array(value)
635
636
if mutable is None:
637
- major, minor = [int(v) for v in pm.__version__.split(".")[:2]]
+ major, minor = (int(v) for v in pm.__version__.split(".")[:2])
638
mutable = major == 4 and minor < 1
639
if mutable:
640
warnings.warn(
0 commit comments