Skip to content

Commit

Permalink
chore(py): Adjust css value unit regex
Browse files Browse the repository at this point in the history
  • Loading branch information
gadenbuie committed Dec 9, 2024
1 parent 91440be commit 335c76a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg-py/src/brand_yml/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from pydantic import BaseModel

rgx_css_value_unit = re.compile(r"^(-?\d*\.?\d+)([a-zA-Z%]*)$")
rgx_css_value_unit = re.compile(r"^(-?\d*\.?\d+)\\s*([a-zA-Z%]*)$")


def find_project_file(
Expand Down

0 comments on commit 335c76a

Please sign in to comment.