Skip to content

Commit

Permalink
fix formatting to match linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin Machi committed Jan 24, 2024
1 parent b205f8e commit f31910d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scif/main/commands.py
Expand Up @@ -17,6 +17,7 @@
import sys
import os


def _exec(self, app=None, interactive=False, exit=False):
"""exec is the underlying driver of both run and exec, taking a final
SCIF and executing the command for the user.
Expand Down Expand Up @@ -88,11 +89,10 @@ def _exec(self, app=None, interactive=False, exit=False):
os.system("".join(cmd))
else:
cmd = cmd.split(" ")
result = self._run_command(
cmd=cmd, spinner=False, quiet=False
)
result = self._run_command(cmd=cmd, spinner=False, quiet=False)
sys.exit(result["return_code"])


def execute(self, app, cmd=None, args=None):
"""execute a command in the context of an app. This means the following:
Expand Down

0 comments on commit f31910d

Please sign in to comment.