Skip to content

Commit

Permalink
#134 Cleanup - 4
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Dec 3, 2024
1 parent 5a05d51 commit b12e9e8
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 8 deletions.
14 changes: 7 additions & 7 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,11 @@ Create a code coverage map.

```

1. Verify that `senzing` is not installed.
1. Verify that `senzing-core` is not installed.
Example:

```console
python3 -m pip freeze | grep -e senzing
python3 -m pip freeze | grep -e senzing-core

```

Expand All @@ -163,23 +163,23 @@ Create a code coverage map.

```

1. Verify that `senzing` is installed.
1. Verify that `senzing-core` is installed.
Example:

```console
python3 -m pip freeze | grep -e senzing
python3 -m pip freeze | grep -e senzing-core

```

Example return:

> senzing @ file:///home/senzing/senzing-garage.git/sz-sdk-python-core/dist/senzing-0.0.1-py3-none-any.whl#sha256=2a4e5218d66d5be60ee31bfad5943e6611fc921f28a4326d9594ceceae7e0ac1
> senzing-core @ file:///home/senzing/senzing-garage.git/sz-sdk-python-core/dist/senzing-core-0.0.1-py3-none-any.whl#sha256=2a4e5218d66d5be60ee31bfad5943e6611fc921f28a4326d9594ceceae7e0ac1
1. Uninstall the `senzing` python package.
1. Uninstall the `senzing-core` python package.
Example:

```console
python3 -m pip uninstall senzing
python3 -m pip uninstall senzing-core

```

Expand Down
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_core
version = 0.3.0
version = 0.0.1
author = senzing
author_email = [email protected]
description = Senzing Python SDK
Expand Down
2 changes: 2 additions & 0 deletions src/senzing_core/szconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ def __init__(self, **kwargs: Any) -> None:
For return value of -> None, see https://peps.python.org/pep-0484/#the-meaning-of-annotations
"""

_ = kwargs

# Determine if Senzing API version is acceptable.
is_supported_senzingapi_version()

Expand Down
2 changes: 2 additions & 0 deletions src/senzing_core/szconfigmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ def __init__(self, **kwargs: Any) -> None:
For return value of -> None, see https://peps.python.org/pep-0484/#the-meaning-of-annotations
"""

_ = kwargs

# Determine if Senzing API version is acceptable.
is_supported_senzingapi_version()

Expand Down
2 changes: 2 additions & 0 deletions src/senzing_core/szdiagnostic.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ def __init__(self, **kwargs: Any) -> None:
For return value of -> None, see https://peps.python.org/pep-0484/#the-meaning-of-annotations
"""

_ = kwargs

# Determine if Senzing API version is acceptable.
is_supported_senzingapi_version()

Expand Down
3 changes: 3 additions & 0 deletions src/senzing_core/szengine.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,9 @@ def __init__(self, **kwargs: Any) -> None:
For return value of -> None, see https://peps.python.org/pep-0484/#the-meaning-of-annotations
"""

_ = kwargs

# Mask for removing SDK specific flags not supplied to method call
self.sdk_flags_mask = ~(SzEngineFlags.SZ_WITH_INFO)

Expand Down
2 changes: 2 additions & 0 deletions src/senzing_core/szproduct.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ def __init__(self, **kwargs: Any) -> None:
For return value of -> None, see https://peps.python.org/pep-0484/#the-meaning-of-annotations
"""

_ = kwargs

# Load binary library.
self.library_handle = load_sz_library()

Expand Down

0 comments on commit b12e9e8

Please sign in to comment.