From 13270e463ec8a9737c441dbd95df01af4fe25d07 Mon Sep 17 00:00:00 2001 From: Databus Bot Date: Thu, 29 Jan 2026 22:14:12 +0530 Subject: [PATCH] Fix verbose logging, remove unused variables and imports --- databus-python-client | 1 + databusclient/client.py | 2 -- file.ttl | 0 file.txt | 0 tests/test_download.py | 1 - 5 files changed, 1 insertion(+), 3 deletions(-) create mode 160000 databus-python-client create mode 100644 file.ttl create mode 100644 file.txt diff --git a/databus-python-client b/databus-python-client new file mode 160000 index 0000000..189458e --- /dev/null +++ b/databus-python-client @@ -0,0 +1 @@ +Subproject commit 189458ec1f673c55f66b97d43b5507c648230f47 diff --git a/databusclient/client.py b/databusclient/client.py index 358f1a6..53a2808 100644 --- a/databusclient/client.py +++ b/databusclient/client.py @@ -157,8 +157,6 @@ def __get_file_info(distribution_str: str) -> Tuple[Dict[str, str], str, str, st cvs = __get_content_variants(distribution_str) extension_part, format_extension, compression = __get_extensions(distribution_str) - content_variant_part = "_".join([f"{key}={value}" for key, value in cvs.items()]) - if __debug: print("DEBUG", distribution_str, extension_part) diff --git a/file.ttl b/file.ttl new file mode 100644 index 0000000..e69de29 diff --git a/file.txt b/file.txt new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_download.py b/tests/test_download.py index 6a1a72e..4df6f52 100644 --- a/tests/test_download.py +++ b/tests/test_download.py @@ -1,5 +1,4 @@ """Download Tests""" -import pytest import databusclient.client as cl DEFAULT_ENDPOINT="https://databus.dbpedia.org/sparql"