Skip to content

Commit

Permalink
remove test prints
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsca committed Sep 2, 2023
1 parent a296cf1 commit 001b86c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/jinjax/jinjax.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ def _process_tag(self, source: str, match: re.Match) -> str:
end = index + len(end_tag)

attrs_list = self._parse_attrs(attrs)
print(attrs_list)
repl = self._build_call(tag, attrs_list, content)
return f"{source[:start]}{repl}{source[end:]}"

Expand Down Expand Up @@ -134,7 +133,6 @@ def _build_call(
attrs.append(f"{name}={value}")

str_attrs = ", ".join(attrs)
print(str_attrs)
if str_attrs:
str_attrs = f", {str_attrs}"

Expand Down

0 comments on commit 001b86c

Please sign in to comment.