Skip to content

Commit cb080c4

Browse files
Revert code changes
1 parent f846fb2 commit cb080c4

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ jobs:
5050
run: cloudsmith push raw ${{ vars.CLOUDSMITH_NAMESPACE }}/${{ vars.CLOUDSMITH_REPO }} cloudsmith.pyz --name "cloudsmith-cli" --version ${{ env.VERSION }}
5151
env:
5252
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }}
53-
VERSION: ${{ env.VERSION }}
53+
VERSION: ${{ env.VERSION }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ reports/
4242
.env
4343

4444
# Zipapp
45-
*.pyz
45+
*.pyz

cloudsmith_cli/cli/commands/list_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,4 +261,4 @@ def _get_package_status(package):
261261

262262
def _get_package_version(package):
263263
"""Get the version for a package (if any)."""
264-
return package["version"] or "None"
264+
return package["version"] or "None"

cloudsmith_cli/cli/commands/repos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,4 +304,4 @@ def delete(ctx, opts, owner_repo, yes):
304304
with maybe_spinner(opts):
305305
api.delete_repo(owner=owner, repo=repo)
306306

307-
click.secho("OK", fg="green")
307+
click.secho("OK", fg="green")

cloudsmith_cli/cli/decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,4 +308,4 @@ def call_print_rate_limit_info_with_opts(rate_info):
308308
kwargs["opts"] = opts
309309
return ctx.invoke(f, *args, **kwargs)
310310

311-
return wrapper
311+
return wrapper

cloudsmith_cli/cli/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,4 +190,4 @@ def maybe_spinner(opts):
190190
yield
191191
else:
192192
with spinner() as spin:
193-
yield spin
193+
yield spin

0 commit comments

Comments
 (0)