Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#98 Delete destroy #99

Merged
merged 2 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning].

## [Unreleased]

## [0.1.6] - 2024-10-28

### Removed in 0.1.6

- `SzAbstractFactory.destroy()`

## [0.1.5] - 2024-10-25

### Added in 0.1.5
Expand Down
1 change: 0 additions & 1 deletion examples/szabstractfactory/destroy.py

This file was deleted.

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = senzing_abstract
version = 0.1.5
version = 0.1.6
author = senzing
author_email = support@senzing.com
description = Python SDK method definitions
Expand Down
14 changes: 0 additions & 14 deletions src/senzing_abstract/szabstractfactory_abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,20 +162,6 @@ def create_sz_product(self, **kwargs: Any) -> SzProductAbstract:
:language: json
"""

@abstractmethod
def destroy(self, **kwargs: Any) -> None:
"""
The `destroy` method ...FIXME: .
Raises:
.. collapse:: Example:
.. literalinclude:: ../../examples/szabstractfactory/destroy.py
:linenos:
:language: python
"""

@abstractmethod
def reinitialize(self, config_id: int, **kwargs: Any) -> None:
"""
Expand Down
3 changes: 0 additions & 3 deletions tests/szabstractfactory_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,5 @@ def create_sz_product(self, **kwargs: Any) -> SzProductAbstract:
_ = kwargs
return SzProductTest()

def destroy(self, **kwargs: Any) -> None:
_ = kwargs

def reinitialize(self, config_id: int, **kwargs: Any) -> None:
_ = kwargs
Loading