Skip to content

Commit

Permalink
Force then squashing (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
unaidedelf8777 authored Sep 29, 2023
1 parent 63b48e4 commit d983560
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interpreter/terminal_interface/magic_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,4 +209,4 @@ def handle_magic_command(self, user_input):
command = user_input.split(" ")[0]
arguments = user_input[len(command):].strip()
action = switch.get(command, default_handle) # Get the function from the dictionary, or default_handle if not found
action(self, arguments) # Execute the function
action(self, arguments) # Execute the function.

0 comments on commit d983560

Please sign in to comment.