Skip to content

Commit 05bbc90

Browse files
remove debug prints (#81)
1 parent 6854a3e commit 05bbc90

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
1818

1919
## [Unreleased]
2020

21+
### Removed
22+
23+
- **Internal**: Removed debug prints from `BirdNode` template tag node.
24+
2125
## [0.7.0]
2226

2327
### Changed

src/django_bird/templatetags/tags/bird.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@ def __init__(self, name: str, params: Params, nodelist: NodeList | None) -> None
6060
@override
6161
def render(self, context: Context) -> str:
6262
component_name = self.get_component_name(context)
63-
print(f"self.name: {self.name}")
64-
print(f"component_name: {component_name}")
65-
print(f"component_name type: {type(component_name)}")
6663
component = components.get_component(component_name)
6764
component_context = self.get_component_context_data(component, context)
6865
return component.render(component_context)

0 commit comments

Comments
 (0)