home · contact · privacy
Refactor Process/ProcessStep setting and saving.
[plomtask] / plomtask / db.py
index 4a82132ff9e89d990c5d3f04f1b4f7395bfb0fda..f53a94c4f085f3664d66f0b0cc38863b217741e1 100644 (file)
@@ -23,7 +23,7 @@ class DatabaseFile:  # pylint: disable=too-few-public-methods
         self._check()
 
     def _check(self) -> None:
-        """Check file exists and is of proper schema."""
+        """Check file exists, and is of proper schema."""
         self.exists = isfile(self.path)
         if self.exists:
             self._validate_schema()