Skip to content

Commit

Permalink
Merge pull request #47 from interlynk-io/fix/crash-fix
Browse files Browse the repository at this point in the history
[NO-TKT] Upload crashes when no format is specified
  • Loading branch information
surendrapathak authored Jul 6, 2024
2 parents 0887641 + 2576f0b commit 44b7403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylynk.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def main() -> int:
if not lynk_ctx.validate():
exit(1)

fmt_json = not args.table
fmt_json = not getattr(args, 'table', False)
if args.subcommand == "prods":
print_products(lynk_ctx, fmt_json)
elif args.subcommand == "vers":
Expand Down

0 comments on commit 44b7403

Please sign in to comment.