Skip to content

Commit 253d8ea

Browse files
committed
Fix syntax
1 parent 26bad07 commit 253d8ea

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

pyflowlauncher/result.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,16 @@ def create_result(
7272
title_highlight_data: Optional[List[int]] = None
7373
) -> Result:
7474
return {
75-
Title: title,
76-
SubTitle: sub_title,
77-
IcoPath: ico_path,
78-
Score: score,
79-
JsonRPCAction: jsonrpc_action,
80-
ContextData: context_data,
81-
Glyph: glyph,
82-
CopyText: copy_text,
83-
AutoCompleteText: auto_complete_text,
84-
RoundedIcon: rounded_icon
85-
Preview: preview,
86-
TitleHighlightData: title_highlight_data
75+
Title = title,
76+
SubTitle = sub_title,
77+
IcoPath = ico_path,
78+
Score = score,
79+
JsonRPCAction = jsonrpc_action,
80+
ContextData = context_data,
81+
Glyph = glyph,
82+
CopyText = copy_text,
83+
AutoCompleteText = auto_complete_text,
84+
RoundedIcon = rounded_icon
85+
Preview = preview,
86+
TitleHighlightData = title_highlight_data
8787
}

0 commit comments

Comments
 (0)