mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
style: Fix missing :s between dict keys and values.
This commit is contained in:
@@ -12,7 +12,7 @@ import signal
|
||||
def interactive_debug(sig, frame):
|
||||
"""Interrupt running process, and provide a python prompt for
|
||||
interactive debugging."""
|
||||
d={'_frame':frame} # Allow access to frame object.
|
||||
d = {'_frame': frame} # Allow access to frame object.
|
||||
d.update(frame.f_globals) # Unless shadowed by global
|
||||
d.update(frame.f_locals)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user