Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/events/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def json_ready_sym(symbol: object, special_attributes: list = None):

for attr in special_attributes:
if hasattr(symbol, attr) and getattr(symbol, attr):
print_sym[attr] = True
print_sym[attr] = getattr(symbol, attr)
elif attr in symbol.defn.special_flags:
print_sym[attr] = True

Expand Down