Skip to content

Commit a628fa7

Browse files
committed
fix missing module for jinja import
1 parent 32c0b58 commit a628fa7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/data_profiling/report/presentation/flavours/html

src/data_profiling/report/presentation/flavours/html/templates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# Initializing Jinja
1111
package_loader = jinja2.PackageLoader(
12-
"", "report/presentation/flavours/html/templates"
12+
"data_profiling", "report/presentation/flavours/html/templates"
1313
)
1414
jinja2_env = jinja2.Environment(
1515
lstrip_blocks=True, trim_blocks=True, loader=package_loader

0 commit comments

Comments
 (0)