Skip to content

Commit

Permalink
#181 Savepoint
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Feb 11, 2025
1 parent 7d420b4 commit 92a3293
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/senzing/szabstractfactory.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ class SzAbstractFactory(ABC):
@abstractmethod
def create_config(self) -> SzConfig:
"""
The `create_config` method creates a new implementation of an `SzConfigAbstract` object.
The `create_config` method creates a new implementation of an `SzConfig` object.
Args:
Returns:
SzConfigAbstract: A new implementation.
senzing.SzConfig: A new implementation.
Raises:
Expand All @@ -65,12 +65,12 @@ def create_config(self) -> SzConfig:
@abstractmethod
def create_configmanager(self) -> SzConfigManager:
"""
The `create_configmanager` method creates a new implementation of an `SzConfigManagerAbstract` object.
The `create_configmanager` method creates a new implementation of an `SzConfigManager` object.
Args:
Returns:
SzConfigManagerAbstract: A new implementation.
senzing.SzConfigManager: A new implementation.
Raises:
Expand All @@ -90,12 +90,12 @@ def create_configmanager(self) -> SzConfigManager:
@abstractmethod
def create_diagnostic(self) -> SzDiagnostic:
"""
The `create_diagnostic` method creates a new implementation of an `SzDiagnosticAbstract` object.
The `create_diagnostic` method creates a new implementation of an `SzDiagnostic` object.
Args:
Returns:
SzDiagnosticAbstract: A new implementation.
senzing.SzDiagnostic: A new implementation.
Raises:
Expand All @@ -115,12 +115,12 @@ def create_diagnostic(self) -> SzDiagnostic:
@abstractmethod
def create_engine(self) -> SzEngine:
"""
The `create_engine` method creates a new implementation of an `SzEngineAbstract` object.
The `create_engine` method creates a new implementation of an `SzEngine` object.
Args:
Returns:
SzEngineAbstract: A new implementation.
senzing.SzEngine: A new implementation.
Raises:
Expand All @@ -140,12 +140,12 @@ def create_engine(self) -> SzEngine:
@abstractmethod
def create_product(self) -> SzProduct:
"""
The `create_product` method creates a new implementation of an `SzProductAbstract` object.
The `create_product` method creates a new implementation of an `SzProduct` object.
Args:
Returns:
SzProductAbstract: A new implementation.
senzing.SzProduct: A new implementation.
Raises:
Expand Down

0 comments on commit 92a3293

Please sign in to comment.