Skip to content
Open
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Package version upgrade for psutil and filelock (#652)
- Package version upgrade for typer (#654)
- Package version upgrade for pydantic (#655)
- Add "--use-server-matching" arguement (#640)
- Add "--use-server-matching" argument (#640)
- Bugfix for safety "NoneType is not iterable" error (#657)


Expand Down
2 changes: 1 addition & 1 deletion safety/safety.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def get_from_cache(
skip_time_verification (bool): Whether to skip time verification.

Returns:
Optional[[Dict[str, Any]]: The cached database if available and valid, otherwise False.
Optional[Dict[str, Any]: The cached database if available and valid, otherwise False.
"""
cache_file_lock = f"{DB_CACHE_FILE}.lock"
os.makedirs(os.path.dirname(cache_file_lock), exist_ok=True)
Expand Down
2 changes: 1 addition & 1 deletion safety/scan/ecosystems/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
)
from typer import FileTextWrite

NOT_IMPLEMENTED = "Not implemented funtion"
NOT_IMPLEMENTED = "Not implemented function"


class Inspectable(ABC):
Expand Down