Skip to content

Commit

Permalink
fix: remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
iamfat committed Aug 24, 2022
1 parent 78d5ab4 commit 3a4baba
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/dotenv/variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ def parse_variables(value: str) -> Iterator[Atom]:
end = i
cursor = i+1
if len(starts) == 0:
print(value[start:end])
for match in _variable_re.finditer(value[start:end]):
name = match.groupdict()["name"]
default = match.groupdict()["default"]
Expand Down

0 comments on commit 3a4baba

Please sign in to comment.