Skip to content

Commit

Permalink
fix: remove unnecessary template string notation
Browse files Browse the repository at this point in the history
  • Loading branch information
bra-i-am committed Mar 21, 2024
1 parent cc6a973 commit f39acdb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def run_command(self, command: str):
raise CommandError(f'Command "{command}" is not a valid Tutor command. Take the official Tutor commands into account https://docs.tutor.edly.io/reference/cli/index.html')

process = subprocess.Popen(
f'{command}',
command,
shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, executable='/bin/bash'
)

Expand Down

0 comments on commit f39acdb

Please sign in to comment.