We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d052f commit f5d8ea5Copy full SHA for f5d8ea5
1 file changed
dojo/tools/api_blackduck/api_client.py
@@ -1,4 +1,9 @@
1
-from blackduck import Client
+import warnings
2
+
3
+# Ignore DeprecationWarning from the blackduck library because we cannot do anything about it
4
+# until they fix it in their library
5
+warnings.filterwarnings("ignore", category=DeprecationWarning)
6
+from blackduck import Client # noqa: E402
7
8
9
class BlackduckAPI:
0 commit comments