Skip to content

Commit

Permalink
fix: remove needless character from docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabs committed Dec 27, 2018
1 parent daebf75 commit 1d51995
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions dcos_test_utils/dcos_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
import tempfile
from typing import Optional

import deprecation
import requests

import deprecation

log = logging.getLogger(__name__)

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

Expand Down

0 comments on commit 1d51995

Please sign in to comment.