Skip to content

Commit

Permalink
lint python code
Browse files Browse the repository at this point in the history
  • Loading branch information
milikhin committed Dec 12, 2020
1 parent 9212cca commit cc2e1bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generic/py-backend/build_utils/build_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def build(self, config_file):
cmd = get_run_clickable_cmd(config_file)
cwd = dirname(config_file)
return self._shell_exec(cmd, cwd)

def create(self, dir_name, options):
"""
Executes clickable --config=<config_file> from a <config_file> directory
Expand Down
3 changes: 2 additions & 1 deletion generic/py-backend/build_utils/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ def get_install_clickable_cmd():

def get_run_clickable_cmd(config_file):
"""Returns cmd string to run clickable from a Seabass Libertine container"""
return 'libertine-launch -i {} clickable build --non-interactive --container-mode --skip-review --config={}'\
return 'libertine-launch -i {} clickable build --non-interactive --container-mode \
--skip-review --config={}'\
.format(CONTAINER_ID, config_file)

def get_create_project_cmd(options):
Expand Down

0 comments on commit cc2e1bc

Please sign in to comment.