This commit is contained in:
odrling 2022-10-06 09:41:42 +02:00
parent 600a3824a6
commit 5565622339
No known key found for this signature in database
GPG Key ID: A0145F975F9F8B75
2 changed files with 2 additions and 2 deletions

View File

@ -129,7 +129,7 @@ def upload(file: Path,
progress_monitor.progress.stop()
req.raise_for_status()
data = req.json()
data = UploadResponse(**req.json())
output(copy, data)

View File

@ -10,7 +10,7 @@ with req.open() as f:
setup(
name='hikari',
version='1.4',
version='1.5',
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,