Skip to content

Commit 3b2e90d

Browse files
author
kx79wq
committed
FIX: add init files
1 parent 2f2b852 commit 3b2e90d

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

histogrammar/notebooks/__init__.py

Whitespace-only changes.

histogrammar/resources.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,18 @@
2020

2121
# Resources lookup file for histogrammar
2222
from importlib import resources
23-
import histogrammar.test_data
24-
import histogrammar.notebooks
2523

2624

2725
# data files that are shipped with histogrammar.
2826
_DATA = {
2927
_.name: _
30-
for _ in resources.files(histogrammar.test_data).iterdir()
28+
for _ in resources.files("histogrammar.test_data").iterdir()
3129
}
3230

3331
# Tutorial notebooks
3432
_NOTEBOOK = {
3533
p.name: p
36-
for p in resources.files(histogrammar.notebooks).iterdir() if p.suffix == ".ipynb"
34+
for p in resources.files("histogrammar.notebooks").iterdir() if p.suffix == ".ipynb"
3735
}
3836

3937
# Resource types

histogrammar/test_data/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)