Skip to content

Commit

Permalink
Merge pull request #1908 from quadratichq/formulas-datetime
Browse files Browse the repository at this point in the history
Remove print statement
  • Loading branch information
HactarCE authored Sep 23, 2024
2 parents e03cc57 + e5d81c7 commit 0c6dca6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion quadratic-kernels/python-wasm/quadratic_py/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ def parse_duration(value: str) -> relativedelta:
for m in re.compile(r'([-\d\.]+)([a-zµ]+)').finditer(value.lower()):
count = float(m.group(1))
unit = m.group(2)
print(count,unit)
match unit:
case "y": ret.years += count
case "mo": ret.months += count
Expand Down

0 comments on commit 0c6dca6

Please sign in to comment.