Skip to content

Commit

Permalink
Merge pull request #749 from niklasmei/fix_doc
Browse files Browse the repository at this point in the history
Changed the import path of SQLiteDataset in the documentation to the currently correct location.
  • Loading branch information
niklasmei authored Sep 19, 2024
2 parents 4d9ca09 + 5276d4d commit 9a0e9c5
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 9a0e9c5

Please sign in to comment.