Skip to content

Commit

Permalink
Merge pull request #14 from TogetherCrew/feat/10-platform-agnostic-data
Browse files Browse the repository at this point in the history
fixing dependency versions!
  • Loading branch information
amindadgar authored Sep 16, 2024
2 parents 4ef4024 + 74aca15 commit 5ba579f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
streamlit
streamlit-authenticator
numpy
pandas
matplotlib
python-dotenv
pymongo
pytest
coverage
streamlit==1.31.1
streamlit-authenticator==0.3.1
numpy==1.26.4
pandas==2.2.1
matplotlib==3.8.3
python-dotenv==1.0.1
pymongo==4.6.2
pytest==8.0.2
coverage==7.4.3
2 changes: 1 addition & 1 deletion utils/mongo_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_raw_data_count(self, from_date: datetime):

raw_data_count = client[self.platform_id][
"rawmemberactivities"
].count_documents({"createdDate": {"$gte": from_date}})
].count_documents({"date": {"$gte": from_date}})
return raw_data_count

def get_guild_members_count(self) -> int:
Expand Down

0 comments on commit 5ba579f

Please sign in to comment.