diff --git a/dojo/tools/api_blackduck/api_client.py b/dojo/tools/api_blackduck/api_client.py index ea4a7999f27..f4bb050d539 100644 --- a/dojo/tools/api_blackduck/api_client.py +++ b/dojo/tools/api_blackduck/api_client.py @@ -1,4 +1,9 @@ -from blackduck import Client +import warnings + +# Ignore DeprecationWarning from the blackduck library because we cannot do anything about it +# until they fix it in their library +warnings.filterwarnings("ignore", category=DeprecationWarning) +from blackduck import Client # noqa: E402 class BlackduckAPI: