diff --git a/rascal2/core/settings.py b/rascal2/core/settings.py index 6da38fa..45cb7f0 100644 --- a/rascal2/core/settings.py +++ b/rascal2/core/settings.py @@ -28,7 +28,7 @@ def delete_local_settings(path: str | PathLike) -> None: Parameters ---------- path: str or PathLike - The path to the folder where settings will be saved. + The path to the folder where the settings are saved. """ file = Path(path, "settings.json") file.unlink(missing_ok=True) diff --git a/tests/test_dialogs.py b/tests/test_dialogs.py index 2e8ec89..e55fcac 100644 --- a/tests/test_dialogs.py +++ b/tests/test_dialogs.py @@ -9,7 +9,7 @@ from rascal2.widgets.inputs import ValidatedInputWidget -class MockPresenter(QtWidgets.QMainWindow): +class MockPresenter: def __init__(self): super().__init__() self.model = MagicMock()