Skip to content

Commit

Permalink
[chore] remove unused dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
cullenwatson committed Oct 5, 2023
1 parent 735ec02 commit 9f50d33
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ options:
```
```bash
> homeharvest "San Francisco, CA" -l for_rent -o excel -f HomeHarvest
homeharvest "San Francisco, CA" -l for_rent -o excel -f HomeHarvest
```


Expand Down
3 changes: 1 addition & 2 deletions homeharvest/core/scrapers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from dataclasses import dataclass
import requests
import tls_client
from .models import Property, ListingType, SiteName


Expand All @@ -19,7 +18,7 @@ class Scraper:
def __init__(
self,
scraper_input: ScraperInput,
session: requests.Session | tls_client.Session = None,
session: requests.Session = None,
):
self.location = scraper_input.location
self.listing_type = scraper_input.listing_type
Expand Down
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 = "homeharvest"
version = "0.3.2"
version = "0.3.3"
description = "Real estate scraping library supporting Zillow, Realtor.com & Redfin."
authors = ["Zachary Hampton <[email protected]>", "Cullen Watson <[email protected]>"]
homepage = "https://github.com/ZacharyHampton/HomeHarvest"
Expand Down

0 comments on commit 9f50d33

Please sign in to comment.