Skip to content
Merged
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
7 changes: 6 additions & 1 deletion dojo/tools/api_blackduck/api_client.py
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
Loading