Skip to content

Commit

Permalink
revert some import changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrako committed Sep 14, 2023
1 parent e5d5c03 commit 0943f4a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/pymovements/dataset/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
from pymovements.dataset.dataset_paths import DatasetPaths
from pymovements.events.frame import EventDataFrame
from pymovements.events.processing import EventGazeProcessor
from pymovements.gaze.gaze_dataframe import GazeDataFrame
from pymovements.gaze import GazeDataFrame


class Dataset:
Expand Down
2 changes: 1 addition & 1 deletion src/pymovements/plotting/heatmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import numpy as np
from matplotlib import colors

from pymovements.gaze.gaze_dataframe import GazeDataFrame
from pymovements.gaze import GazeDataFrame


def heatmap(
Expand Down
2 changes: 1 addition & 1 deletion src/pymovements/plotting/main_sequence_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from matplotlib.collections import Collection
from polars import ColumnNotFoundError

from pymovements.events.frame import EventDataFrame
from pymovements.events import EventDataFrame


def main_sequence_plot(
Expand Down
2 changes: 1 addition & 1 deletion src/pymovements/plotting/traceplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from matplotlib import colors
from matplotlib.collections import LineCollection

from pymovements.gaze.gaze_dataframe import GazeDataFrame
from pymovements.gaze import GazeDataFrame


# This is really a dirty workaround to use the Agg backend if runnning pytest.
Expand Down
2 changes: 1 addition & 1 deletion src/pymovements/plotting/tsplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import numpy as np
import polars as pl

from pymovements.gaze.gaze_dataframe import GazeDataFrame
from pymovements.gaze import GazeDataFrame


def tsplot(
Expand Down

0 comments on commit 0943f4a

Please sign in to comment.