Skip to content

Commit

Permalink
remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusroemer committed Nov 10, 2024
1 parent 0cbce1a commit ac0f0ba
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions augur/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,9 @@ def fix_dates(d: str, dayfirst: bool = True) -> str:
try:
# pandas <2.2
from pandas.core.tools.datetimes import parsing # type: ignore
print("Imported from pandas.core", file=sys.stderr)
except ImportError:
# pandas >=2.2
from pandas._libs.tslibs import parsing # type: ignore
print("Imported from pandas._libs", file=sys.stderr)
try:
# pandas <2
results = parsing.parse_time_string(d, dayfirst=dayfirst)
Expand Down

0 comments on commit ac0f0ba

Please sign in to comment.