Skip to content

Commit

Permalink
unset intentional error
Browse files Browse the repository at this point in the history
  • Loading branch information
gamesguru committed Mar 2, 2024
1 parent 72a4b75 commit 12b0ee9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sql/latest_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
reader = csv.reader(_r_file)
rows = list(reader)

print(rows[-1][15], end="")
# Print latest version
print(rows[-1][1], end="")

except Exception as exc:
# Failed, so we return empty version
# Failed, so we print empty version
pass

0 comments on commit 12b0ee9

Please sign in to comment.