⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions databus-python-client
Submodule databus-python-client added at 189458
Empty file added file.ttl
Empty file.
Empty file added file.txt
Empty file.
4 changes: 4 additions & 0 deletions tests/test_download.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
"""Download Tests"""
<<<<<<< HEAD

Check failure on line 2 in tests/test_download.py

View workflow job for this annotation

GitHub Actions / build

Ruff

tests/test_download.py:2:7: SyntaxError: Expected a statement

Check failure on line 2 in tests/test_download.py

View workflow job for this annotation

GitHub Actions / build

Ruff

tests/test_download.py:2:5: SyntaxError: Expected a statement

Check failure on line 2 in tests/test_download.py

View workflow job for this annotation

GitHub Actions / build

Ruff

tests/test_download.py:2:3: SyntaxError: Expected a statement

Check failure on line 2 in tests/test_download.py

View workflow job for this annotation

GitHub Actions / build

Ruff

tests/test_download.py:2:1: SyntaxError: Expected a statement
import databusclient.client as cl
=======

Check failure on line 4 in tests/test_download.py

View workflow job for this annotation

GitHub Actions / build

Ruff

tests/test_download.py:4:7: SyntaxError: Expected a statement

Check failure on line 4 in tests/test_download.py

View workflow job for this annotation

GitHub Actions / build

Ruff

tests/test_download.py:4:5: SyntaxError: Expected a statement

Check failure on line 4 in tests/test_download.py

View workflow job for this annotation

GitHub Actions / build

Ruff

tests/test_download.py:4:3: SyntaxError: Expected a statement

Check failure on line 4 in tests/test_download.py

View workflow job for this annotation

GitHub Actions / build

Ruff

tests/test_download.py:4:1: SyntaxError: Expected a statement
>>>>>>> main

Check failure on line 5 in tests/test_download.py

View workflow job for this annotation

GitHub Actions / build

Ruff

tests/test_download.py:5:1: SyntaxError: Expected a statement

Check failure on line 5 in tests/test_download.py

View workflow job for this annotation

GitHub Actions / build

Ruff

tests/test_download.py:4:8: SyntaxError: Expected a statement
Comment on lines +2 to +5
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Resolve merge conflict markers; file is currently invalid.

The <<<<<<<, =======, >>>>>>> markers will break test collection and linting. Resolve the conflict and remove the unused import unless it’s actually needed.

🧩 Proposed fix
-<<<<<<< HEAD
-import databusclient.client as cl
-=======
->>>>>>> main
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<<<<<<< HEAD
import databusclient.client as cl
=======
>>>>>>> main
🤖 Prompt for AI Agents
In `@tests/test_download.py` around lines 2 - 5, Remove the Git merge conflict
markers (<<<<<<< HEAD, =======, >>>>>>> main) from tests/test_download.py and
resolve the conflict by keeping the intended import or deleting it; specifically
decide whether the import statement "import databusclient.client as cl" is
required by the tests—if not, remove that unused import; ensure the file has no
conflict markers and imports only what tests use so test collection and linting
succeed.


import pytest

Expand Down
Loading