From 64a1cbf285d801536975af24d6f439c1cd442bf7 Mon Sep 17 00:00:00 2001 From: Daniel Oronsi Date: Thu, 14 Sep 2023 17:43:18 +0300 Subject: [PATCH] Formatting fixes --- CHANGES | 6 +++++- intezer_sdk/__init__.py | 2 +- intezer_sdk/analysis.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 533221a..8e896a9 100644 --- a/CHANGES +++ b/CHANGES @@ -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 ------ diff --git a/intezer_sdk/__init__.py b/intezer_sdk/__init__.py index 7a99af9..969a12c 100644 --- a/intezer_sdk/__init__.py +++ b/intezer_sdk/__init__.py @@ -1 +1 @@ -__version__ = '1.19.1' +__version__ = '1.19.2' diff --git a/intezer_sdk/analysis.py b/intezer_sdk/analysis.py index 888e384..726916f 100644 --- a/intezer_sdk/analysis.py +++ b/intezer_sdk/analysis.py @@ -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.