Skip to content

Commit

Permalink
changed the import path of SQLiteDataset to the currently correct loc…
Browse files Browse the repository at this point in the history
…ation. At the same time did the same change for ParquetDataset, issue will follow
  • Loading branch information
niklasmei committed Sep 14, 2024
1 parent dc7fa4f commit 5276d4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/datasets/datasets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ After that, you can construct your :code:`Dataset` from a SQLite database with j

.. code-block:: python
from graphnet.data.sqlite import SQLiteDataset
from graphnet.data.dataset.sqlite.sqlite_dataset import SQLiteDataset
from graphnet.models.detector.prometheus import Prometheus
from graphnet.models.graphs import KNNGraph
from graphnet.models.graphs.nodes import NodesAsPulses
Expand All @@ -203,7 +203,7 @@ Or similarly for Parquet files:

.. code-block:: python
from graphnet.data.parquet import ParquetDataset
from graphnet.data.dataset.parquet.parquet_dataset import ParquetDataset
from graphnet.models.detector.prometheus import Prometheus
from graphnet.models.graphs import KNNGraph
from graphnet.models.graphs.nodes import NodesAsPulses
Expand Down

0 comments on commit 5276d4d

Please sign in to comment.