Skip to content

Commit

Permalink
Merge branch 'master' of github.com:SDXorg/pysd into skip_cov
Browse files Browse the repository at this point in the history
  • Loading branch information
enekomartinmartinez committed Jun 27, 2024
2 parents 5b68208 + 10d5972 commit 38abeaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pysd/translators/vensim/parsing_grammars/sketch.peg
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ other_objects = other_objects_code "," anything

# fonts
font_properties = font_name? "|" font_size? "|" font_style? "|" color
font_style = "B" / "I" / "U" / "S" / "V" # italics, bold, underline, etc
font_style = ("B" / "I" / "U" / "S" / "V")+ # italics, bold, underline, etc
font_size = ~r"\d+" # this needs to be made a regex to match any font
font_name = ~r"(?<=,)[^\|\d]+(?=\|)"

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ lxml
regex
chardet
black
openpyxl>=3.1
openpyxl>=3.1.2
scipy
progressbar2
portion

0 comments on commit 38abeaf

Please sign in to comment.