Skip to content

Commit

Permalink
Formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-oronsi committed Sep 14, 2023
1 parent 16214c1 commit 64a1cbf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
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

0 comments on commit 64a1cbf

Please sign in to comment.