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
2 changes: 2 additions & 0 deletions dvuploader/nativeupload.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ async def native_upload(
"proxy": proxy,
}

rich.print(files)

async with httpx.AsyncClient(**session_params) as session:
with tempfile.TemporaryDirectory() as tmp_dir:
packages = distribute_files(files)
Expand Down
2 changes: 2 additions & 0 deletions dvuploader/packaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ def zip_files(
zinfo_or_arcname=_create_arcname(file),
)

zip_file.printdir()

return path


Expand Down
Loading