diff --git a/pyproject.toml b/pyproject.toml index 50e7a68..52a43f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] readme = "README.md" diff --git a/staffspy/models.py b/staffspy/models.py index ff2e467..9ae8450 100644 --- a/staffspy/models.py +++ b/staffspy/models.py @@ -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 @@ -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,