Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

62 get results #64

Merged
merged 3 commits into from
May 13, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Issue #62 fixed lint
  • Loading branch information
thompson318 committed May 11, 2021
commit fbb0e688e5e661688ae00ee7bc3c30788ff77168
5 changes: 3 additions & 2 deletions sksurgeryfred/utilities/get_results.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#Script to download and parse results from firestore
"""
Script to download and parse results from firestore
"""

from google.cloud import firestore

Expand All @@ -11,4 +13,3 @@
game_results = result.reference.collection("game_results").get()
for game_result in game_results:
print (game_result.to_dict())