Skip to content

Commit

Permalink
Fix mypy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
treff7es committed Oct 29, 2024
1 parent 98ad801 commit f35a119
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ def act(self, event: EventEnvelope) -> None:
logger.debug(f"received orig_event {orig_event}")
if (orig_event.get("aspectName") not in self.aspects_exclude_set) and (
orig_event.get("entityType") not in self.config.entity_type_to_exclude
if self.config.entity_type_to_exclude
else True
):
mcp = self.buildMcp(orig_event)
if mcp is not None:
Expand Down

0 comments on commit f35a119

Please sign in to comment.