mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 14:08:08 +01:00
Enhance Dev Experience and Code Quality (#41)
* Format codebase to satisfy linters * fixing pylance and ruff-checked files * contributing md, and type and formatting fixes * setup file capitalization * test fix
This commit is contained in:
committed by
GitHub
parent
e35181b5ad
commit
eb06cf5c8d
@@ -1,7 +1,7 @@
|
||||
from .give_hint import TREASURE_LOCATION
|
||||
|
||||
|
||||
def guess_location(args: dict) -> dict:
|
||||
|
||||
guess_address = args.get("address").lower()
|
||||
guess_city = args.get("city").lower()
|
||||
guess_state = args.get("state").lower()
|
||||
@@ -11,8 +11,12 @@ def guess_location(args: dict) -> dict:
|
||||
else:
|
||||
compare_state = TREASURE_LOCATION.get("state_full").lower()
|
||||
|
||||
#Check for the street address to be included in the guess to account for "st" vs "street" or leaving Street off entirely
|
||||
if TREASURE_LOCATION.get("address").lower() in guess_address and TREASURE_LOCATION.get("city").lower() == guess_city and compare_state == guess_state:
|
||||
# Check for the street address to be included in the guess to account for "st" vs "street" or leaving Street off entirely
|
||||
if (
|
||||
TREASURE_LOCATION.get("address").lower() in guess_address
|
||||
and TREASURE_LOCATION.get("city").lower() == guess_city
|
||||
and compare_state == guess_state
|
||||
):
|
||||
return {"treasure_found": "True"}
|
||||
else:
|
||||
return {"treasure_found": "False"}
|
||||
return {"treasure_found": "False"}
|
||||
|
||||
Reference in New Issue
Block a user