From 1db22b95b9eaf42e54d35c1d2d5b544f6679ff18 Mon Sep 17 00:00:00 2001 From: Abraham Thon <71495895+Thon122@users.noreply.github.com> Date: Sat, 2 May 2026 17:52:11 +0530 Subject: [PATCH] fix: initialize photos and reviews variables to fix NameError #589 --- ghunt/modules/email.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ghunt/modules/email.py b/ghunt/modules/email.py index c47e330a..03492c0d 100644 --- a/ghunt/modules/email.py +++ b/ghunt/modules/email.py @@ -120,6 +120,8 @@ async def hunt(as_client: httpx.AsyncClient, email_address: str, json_file: Path print("\n[-] No player profile found.") gb.rc.print("\n🗺️ Maps data", style="green4") + photos = None + reviews = None err, stats = await gmaps.get_reviews(as_client, target.personId) gmaps.output(err, stats, target.personId)