Skip to content

Commit

Permalink
Fixed linter complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Walsh committed Jan 3, 2024
1 parent f82577b commit 0e88fd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python3/vimspector/debug_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -1685,7 +1685,7 @@ def _GetShellCommand( self ):
def _GetDockerCommand( self, remote ):
docker = [ 'docker', 'exec', '-t' ]
if 'docker_args' in remote:
docker += remote['docker_args']
docker += remote[ 'docker_args' ]
docker.append( remote[ 'container' ] )
return docker

Expand Down

0 comments on commit 0e88fd4

Please sign in to comment.