Skip to content

Commit

Permalink
MAINT: Empty IO
Browse files Browse the repository at this point in the history
  • Loading branch information
jwboth committed Jul 24, 2024
1 parent a09ef26 commit f07f75f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/darsia/corrections/color/experimentalcolorcorrection.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

import copy
import warnings
from pathlib import Path
from typing import Optional, Union, cast

import colour
Expand Down Expand Up @@ -322,3 +323,11 @@ def _restrict_to_roi(self, img: np.ndarray) -> np.ndarray:
plt.show()

return return_img

# ! ---- I/O ----

def save(self, path: Path) -> None:
raise NotImplementedError("Not implemented yet.")

def load(self, path: Path) -> None:
raise NotImplementedError("Not implemented yet.")

0 comments on commit f07f75f

Please sign in to comment.