Skip to content

Commit

Permalink
Missing lower
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielfior committed Dec 30, 2024
1 parent 0ce4efc commit f214a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prediction_market_agent/agents/arbitrage_agent/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def get_correlated_markets(self, market: AgentMarket) -> list[CorrelatedMarketPa
print(f"Fetched {len(omen_markets)} related markets for market {market.id}")

for related_market in omen_markets:
if related_market.id == market.id:
if related_market.id.lower() == market.id.lower():
logger.info(
f"Skipping related market {related_market.id} since same market as {market.id}"
)
Expand Down

0 comments on commit f214a54

Please sign in to comment.