Skip to content

Commit

Permalink
fix:age
Browse files Browse the repository at this point in the history
  • Loading branch information
cullenwatson committed Jul 21, 2024
1 parent fecbabe commit 4b99511
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "staffspy"
version = "0.1.16"
version = "0.1.17"
description = "Staff scraper library for LinkedIn"
authors = ["Cullen Watson <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 0 additions & 2 deletions staffspy/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ class Staff(BaseModel):
first_name: str | None = None
last_name: str | None = None
potential_email: str | None = None
estimated_age: int | None = None
bio: str | None = None
followers: int | None = None
connections: int | None = None
Expand Down Expand Up @@ -128,7 +127,6 @@ def to_dict(self):
"school_1": top_three_school_names[0],
"school_2": top_three_school_names[1],
"location": self.location,
"estimated_age": self.estimated_age,
"followers": self.followers,
"connections": self.connections,
"mutuals": self.mutual_connections if self.mutual_connections else 0,
Expand Down

0 comments on commit 4b99511

Please sign in to comment.