Skip to content

Commit

Permalink
fix(chrome gen): Use current generator helper names
Browse files Browse the repository at this point in the history
  • Loading branch information
Smejky338 committed Jun 6, 2024
1 parent 9cd5ccb commit fb02950
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions opl/generators/chrome_notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ def __init__(

def _data(self):
return {
"id": self._get_uuid(),
"payload_id": self._get_uuid(),
"time": self._get_now_iso_z(),
"id": self.gen_uuid(),
"payload_id": self.gen_uuid(),
"time": self.gen_datetime(),
"title": self.gen_string(),
}

0 comments on commit fb02950

Please sign in to comment.