Skip to content

Commit

Permalink
#181 Fix action errors
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Feb 13, 2025
1 parent ad47a8e commit 2395d61
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pylint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
echo "PATH=${PATH}" >> "${GITHUB_ENV}"
python -m pip install --upgrade pip
python -m pip install --requirement requirements.txt
python -m pip install --requirement test-requirements.txt
python -m pip install psutil pylint pytest pytest_schema
- name: Analysing the code with pylint
Expand Down
1 change: 1 addition & 0 deletions examples/docs/using_abstract_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@


def perform_senzing_search(sz_abstract_factory: SzAbstractFactory, attributes: str) -> str:
"""Example Senzing search."""
sz_engine = sz_abstract_factory.create_engine()
flags = SzEngineFlags.SZ_SEARCH_BY_ATTRIBUTES_DEFAULT_FLAGS
search_profile = ""
Expand Down
1 change: 1 addition & 0 deletions examples/docs/using_sz_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@


def perform_senzing_search(sz_engine: SzEngine, attributes: str) -> str:
"""Example Senzing search."""
flags = SzEngineFlags.SZ_SEARCH_BY_ATTRIBUTES_DEFAULT_FLAGS
search_profile = ""
return sz_engine.search_by_attributes(attributes, flags, search_profile)

0 comments on commit 2395d61

Please sign in to comment.