Skip to content

Commit 51d2893

Browse files
committed
default notification_events to []
1 parent c9d1e80 commit 51d2893

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_scheduler/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class RuntimeEnvironment(BaseModel):
5757
default_compute_type: Optional[str] # Should be a member of the compute_types list
5858
utc_only: Optional[bool]
5959
notifications_enabled: bool = False
60-
notification_events: List[Type[NotificationEvent]] = [e for e in NotificationEvent]
60+
notification_events: List[Type[NotificationEvent]] = []
6161

6262
def __str__(self):
6363
return self.json()

0 commit comments

Comments
 (0)