You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
user_input=input(f'\n~~~PREVIOUS NOTE~~~\n{old_note}\n-{event["summary"]}- (⌘ + v to paste): ').split(',') iffound_commandselseinput(command_prompt(event['summary'])).split(',')
143
+
pyperclip.copy(user_input)
143
144
144
145
ifuser_input!= ['']:
145
146
try:
146
147
event['description'] =parse_commands(user_input)
147
148
exceptKeyError:
149
+
# Add user_input into clipboard, parse that and execute parse_commands?
150
+
148
151
print('Key Error: add commands first')
149
152
user_input=input(f'\n~~~PREVIOUS NOTE~~~\n{old_note}\n-{event["summary"]}- (⌘ + v to paste): ').split(',') iffound_commandselseinput(command_prompt(event['summary'])).split(',')
0 commit comments