Skip to content

Commit 9fbe375

Browse files
committed
Drop print statements
1 parent b49db94 commit 9fbe375

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

django_esm/utils.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ def parse_package_json(path: Path = None):
106106
path / module,
107107
settings.BASE_DIR / "node_modules",
108108
)
109-
if name == "lit-html":
110-
print("lit-html", module)
111109
except KeyError:
112110
try:
113111
module = exports["import"]
@@ -116,12 +114,8 @@ def parse_package_json(path: Path = None):
116114
path / module,
117115
settings.BASE_DIR / "node_modules",
118116
)
119-
if name == "lit-html":
120-
print("lit-html", module)
121117
except KeyError:
122118
for module_name, module in exports.items():
123-
if name == "lit-html":
124-
print("lit-html", module)
125119
module = next(find_default_key(module))
126120

127121
yield from get_static_from_abs_path(

0 commit comments

Comments
 (0)