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.
2 parents 65ad155 + 4a849ce commit 54efc64Copy full SHA for 54efc64
packages/python/plotly/_plotly_utils/basevalidators.py
@@ -477,7 +477,9 @@ def build_regex_replacement(regex_str):
477
#
478
# To be cautious, we only perform this conversion for enumerated
479
# values that match the anchor-style regex
480
- match = re.match(r"\^(\w)\(\[2\-9\]\|\[1\-9\]\[0\-9\]\+\)\?\$", regex_str)
+ match = re.match(
481
+ r"\^(\w)\(\[2\-9\]\|\[1\-9\]\[0\-9\]\+\)\?\( domain\)\?\$", regex_str
482
+ )
483
484
if match:
485
anchor_char = match.group(1)
packages/python/plotly/optional-requirements.txt
@@ -25,7 +25,7 @@ psutil
25
26
## code formatting
27
pre-commit
28
-black
+black==19.10b0
29
30
## codegen dependencies ##
31
inflect
0 commit comments