diff --git a/docker-compose.yaml b/docker-compose.yaml index d7c7184..164bf66 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -7,4 +7,4 @@ services: ports: - 3000:3000 environment: - - GITHUB_ACCESS_TOKEN=your_github_access_token \ No newline at end of file + - GITHUB_ACCESS_TOKEN \ No newline at end of file diff --git a/fake_star_detector/assets/simpler_model.py b/fake_star_detector/assets/simpler_model.py index d782ff2..03035f6 100644 --- a/fake_star_detector/assets/simpler_model.py +++ b/fake_star_detector/assets/simpler_model.py @@ -203,7 +203,7 @@ def _validate_star(row: pd.DataFrame) -> int: and (row["following"] < 2) and (row["public_gists"] == 0) and (row["public_repos"] < 5) - and (row["created_at"] > datetime.date(2022, 1, 1)) + and (row["created_at"] > pd.Timestamp(datetime.date(2022, 1, 1))) and (row["email"] is None) and (row["bio"] is None) and (not row["blog"])