Skip to content

Commit fab26d8

Browse files
committed
trailing commas on dicts
1 parent 2fd2d59 commit fab26d8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/messaging.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -965,11 +965,11 @@ Message type: ``display_data``::
965965
'data' : dict,
966966

967967
# Any metadata that describes the data
968-
'metadata' : dict
968+
'metadata' : dict,
969969

970970
# Optional transient data. Information not to be persisted to a notebook
971971
# or other documents. Intended to live only during a live kernel session.
972-
'transient': dict
972+
'transient': dict,
973973
}
974974

975975

@@ -1034,11 +1034,11 @@ Message type: ``update_display_data``::
10341034
'data' : dict,
10351035

10361036
# Any metadata that describes the data
1037-
'metadata' : dict
1037+
'metadata' : dict,
10381038

10391039
# Any information not to be persisted to a notebook or other environment
10401040
# Intended to live only during a kernel session
1041-
'transient': dict
1041+
'transient': dict,
10421042
}
10431043

10441044
Code inputs

0 commit comments

Comments
 (0)