Skip to content

Commit

Permalink
FIX: add init files
Browse files Browse the repository at this point in the history
  • Loading branch information
kx79wq committed Dec 8, 2024
1 parent 2f2b852 commit 3b2e90d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Empty file.
6 changes: 2 additions & 4 deletions histogrammar/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,18 @@

# Resources lookup file for histogrammar
from importlib import resources
import histogrammar.test_data
import histogrammar.notebooks


# data files that are shipped with histogrammar.
_DATA = {
_.name: _
for _ in resources.files(histogrammar.test_data).iterdir()
for _ in resources.files("histogrammar.test_data").iterdir()
}

# Tutorial notebooks
_NOTEBOOK = {
p.name: p
for p in resources.files(histogrammar.notebooks).iterdir() if p.suffix == ".ipynb"
for p in resources.files("histogrammar.notebooks").iterdir() if p.suffix == ".ipynb"
}

# Resource types
Expand Down
Empty file.

0 comments on commit 3b2e90d

Please sign in to comment.