Skip to content

Commit 1d51995

Browse files
committed
fix: remove needless character from docs
1 parent daebf75 commit 1d51995

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

dcos_test_utils/dcos_cli.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@
1414
import tempfile
1515
from typing import Optional
1616

17-
import deprecation
1817
import requests
1918

19+
import deprecation
20+
2021
log = logging.getLogger(__name__)
2122

2223
DCOS_CLI_URL = os.getenv('DCOS_CLI_URL', 'https://downloads.dcos.io/binaries/cli/linux/x86-64/dcos-1.12/dcos')
@@ -106,8 +107,8 @@ def exec(self, cmd: str, stdin=None, check=True) -> subprocess.CompletedProcess:
106107
:returns: A tuple with stdout and stderr
107108
:rtype: subprocess.CompletedProcess
108109
109-
:raises subprocess.CalledProcessError: When check=True if the returncode of \
110-
cmd is not 0
110+
:raises subprocess.CalledProcessError: When check=True
111+
if the returncode of cmd is not 0
111112
exception description.
112113
"""
113114

0 commit comments

Comments
 (0)