Skip to content

Commit

Permalink
another test
Browse files Browse the repository at this point in the history
  • Loading branch information
barrust committed Dec 26, 2024
1 parent 04af2f8 commit e6c1d36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ruff-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,3 @@ jobs:
- name: Run Ruff format
run: ruff format --check .
continue-on-error: false

6 changes: 3 additions & 3 deletions spellchecker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
__author__,

Check failure on line 4 in spellchecker/__init__.py

View workflow job for this annotation

GitHub Actions / build

Ruff (F401)

spellchecker/__init__.py:4:5: F401 `spellchecker.info.__author__` imported but unused; consider removing, adding to `__all__`, or using a redundant alias
__maintainer__,

Check failure on line 5 in spellchecker/__init__.py

View workflow job for this annotation

GitHub Actions / build

Ruff (F401)

spellchecker/__init__.py:5:5: F401 `spellchecker.info.__maintainer__` imported but unused; consider removing, adding to `__all__`, or using a redundant alias
__email__,

Check failure on line 6 in spellchecker/__init__.py

View workflow job for this annotation

GitHub Actions / build

Ruff (F401)

spellchecker/__init__.py:6:5: F401 `spellchecker.info.__email__` imported but unused; consider removing, adding to `__all__`, or using a redundant alias
__license__, # noqa: F401
__license__,

Check failure on line 7 in spellchecker/__init__.py

View workflow job for this annotation

GitHub Actions / build

Ruff (F401)

spellchecker/__init__.py:7:5: F401 `spellchecker.info.__license__` imported but unused; consider removing, adding to `__all__`, or using a redundant alias
__version__,

Check failure on line 8 in spellchecker/__init__.py

View workflow job for this annotation

GitHub Actions / build

Ruff (F401)

spellchecker/__init__.py:8:5: F401 `spellchecker.info.__version__` imported but unused; consider removing, adding to `__all__`, or using a redundant alias
__credits__,

Check failure on line 9 in spellchecker/__init__.py

View workflow job for this annotation

GitHub Actions / build

Ruff (F401)

spellchecker/__init__.py:9:5: F401 `spellchecker.info.__credits__` imported but unused; consider removing, adding to `__all__`, or using a redundant alias
__url__,

Check failure on line 10 in spellchecker/__init__.py

View workflow job for this annotation

GitHub Actions / build

Ruff (F401)

spellchecker/__init__.py:10:5: F401 `spellchecker.info.__url__` imported but unused; consider removing, adding to `__all__`, or using a redundant alias
__bugtrack_url__,
) # noqa: F401
__bugtrack_url__

Check failure on line 11 in spellchecker/__init__.py

View workflow job for this annotation

GitHub Actions / build

Ruff (F401)

spellchecker/__init__.py:11:5: F401 `spellchecker.info.__bugtrack_url__` imported but unused; consider removing, adding to `__all__`, or using a redundant alias
)


__all__ = ["SpellChecker", "WordFrequency"]

0 comments on commit e6c1d36

Please sign in to comment.