Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bgraedel committed Oct 13, 2024
1 parent 0b3ebdc commit 17dbff3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arcos4py/plotting/_plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,8 +608,8 @@ def plot(self, projection_axis: str, color_cylce: list[str] = TAB20):
elif projection_axis == self.posz:
self.projection_index = 5
if self.df.empty:
grpd_data = []
colors = []
grpd_data: list[np.ndarray] = []
colors: np.ndarray = np.array([])
else:
grpd_data, colors = self._prepare_data_noodleplot(
self.df,
Expand Down

0 comments on commit 17dbff3

Please sign in to comment.