Skip to content

Commit

Permalink
#62 fix for audience_size
Browse files Browse the repository at this point in the history
  • Loading branch information
mrwunderbar666 committed Jun 22, 2024
1 parent 105bf5d commit 736a97a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions meteor/flaskdgraph/dgraph_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1631,6 +1631,9 @@ class ListDatetime(DateTime):
dgraph_predicate_type = "[datetime]"
_type = list

def __init__(self, overwrite=True, *args, **kwargs) -> None:
super().__init__(overwrite=overwrite, *args, **kwargs)

def validation_hook(self, data):
if data is None:
return None
Expand Down

0 comments on commit 736a97a

Please sign in to comment.