Skip to content

Commit

Permalink
hotfix: ran yapf on changed files. should be done in PR not on master…
Browse files Browse the repository at this point in the history
…. for now fixing as hotfix
  • Loading branch information
asampat3090 committed May 3, 2018
1 parent b0e8eeb commit 3110eae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion datmo/cli/command/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ def run(self, **kwargs):
if not isinstance(kwargs['cmd'], list):
if platform.system() == "Windows":
kwargs['cmd'] = kwargs['cmd']
elif isinstance(kwargs['cmd'], str) or isinstance(kwargs['cmd'], unicode):
elif isinstance(kwargs['cmd'], str) or isinstance(
kwargs['cmd'], unicode):
kwargs['cmd'] = shlex.split(kwargs['cmd'])

task_dict = {
Expand Down

0 comments on commit 3110eae

Please sign in to comment.