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

Formatting fixes #116

Merged
merged 1 commit into from
Sep 14, 2023
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: 5 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
1.19.2
------
- Formatting fixes.

1.19.1
------
- Add "exact_match option" to UrlAnalysis.from_latest_analysis.
- Add "exact_match" option to UrlAnalysis.from_latest_analysis.

1.19
------
Expand Down
2 changes: 1 addition & 1 deletion intezer_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.19.1'
__version__ = '1.19.2'
2 changes: 1 addition & 1 deletion intezer_sdk/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def from_latest_analysis(cls,
url: str,
days_threshold_for_latest_analysis: int = 1,
api: IntezerApiClient = None,
exact_match=False) -> Optional['UrlAnalysis']:
exact_match: bool = False) -> Optional['UrlAnalysis']:
"""
Returns a UrlAnalysis instance with the latest analysis of the given URL.
:param url: The URL to retrieve the latest analysis for.
Expand Down