Skip to content

Commit

Permalink
Fix type error - ignore comment moved
Browse files Browse the repository at this point in the history
  • Loading branch information
ellie committed Oct 26, 2023
1 parent 482ab04 commit fa9d0d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions posthog/models/filters/mixins/simplify.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def simplify(self: T, team: "Team", **kwargs) -> T:
if hasattr(result, "entities_to_dict"):
for entity_type, entities in result.entities_to_dict().items():
updated_entities[entity_type] = [
self._simplify_entity(team, entity_type, entity, **kwargs)
for entity in entities # type: ignore
self._simplify_entity(team, entity_type, entity, **kwargs) # type: ignore
for entity in entities
]

from posthog.models.property.util import clear_excess_levels
Expand Down

0 comments on commit fa9d0d4

Please sign in to comment.