Skip to content

Commit

Permalink
actually change url (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
fhenneke authored Jul 13, 2023
1 parent 8ab640b commit 4c21a9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apis/solverapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self, url: Optional[str] = None) -> None:
load_dotenv()
self.solver_url = getenv("QUASIMODO_SOLVER_URL")
if self.solver_url is not None:
self.solver_url.replace("prod", "staging")
self.solver_url = self.solver_url.replace("prod", "staging")

def solve_instance(
self, auction_instance: dict[str, Any]
Expand Down

0 comments on commit 4c21a9f

Please sign in to comment.