Skip to content

Commit

Permalink
docs: remove unrelated DynamicNFT reference from message
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamantios committed Feb 20, 2025
1 parent a78a88b commit ad3bb9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/valory/skills/decision_maker_abci/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def _get_handler(self, url: str, method: str) -> Tuple[Optional[Callable], Dict]
# Check base url
if not re.match(self.handler_url_regex, url):
self.context.logger.info(
f"The url {url} does not match the DynamicNFT HttpHandler's pattern"
f"The url {url} does not match the HttpHandler's pattern"
)
return None, {}

Expand All @@ -200,7 +200,7 @@ def _get_handler(self, url: str, method: str) -> Tuple[Optional[Callable], Dict]

# No route found
self.context.logger.info(
f"The message [{method}] {url} is intended for the DynamicNFT HttpHandler but did not match any valid pattern"
f"The message [{method}] {url} is intended for the HttpHandler but did not match any valid pattern"
)
return self._handle_bad_request, {}

Expand Down

0 comments on commit ad3bb9a

Please # to comment.