Skip to content

Commit

Permalink
fix: unsupported regex syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Michsior14 committed Mar 10, 2024
1 parent e194469 commit 24259c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/venta/venta_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

_LOGGER = logging.getLogger(__name__)

JSON_REGEX = re.compile(r"^\{(?:[^{}]|(?R))*\}")
JSON_REGEX = re.compile(r"\{.*\}")


@dataclass
Expand Down

0 comments on commit 24259c2

Please sign in to comment.