Skip to content

Commit 2943320

Browse files
committed
fix: remove print statement
1 parent a4b3b70 commit 2943320

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

epidatpy/_parse.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ def parse_api_date_or_week(value: Union[str, int, float, None]) -> Optional[date
2525
if value is None:
2626
return None
2727
v = str(value)
28-
print(len(v))
2928
if len(v) == 6:
3029
d = Week.fromstring(v).startdate()
3130
elif len(v) == 10: # yyyy-mm-dd

0 commit comments

Comments
 (0)