Skip to content

Commit

Permalink
Fix style check failing due to line too long. (E501)
Browse files Browse the repository at this point in the history
  • Loading branch information
DDR0 committed Sep 24, 2020
1 parent 2e59a9e commit 1a3764f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dvc/command/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class CmdDataStatus(CmdDataBase):
UP_TO_DATE_MSG = "Data and pipelines are up to date."
EMPTY_PROJECT_MSG = (
"There is no data tracked in this project yet.\n"
"See {blue}https://dvc.org/doc/start/data-versioning{nc} to get started!"
).format(blue=colorama.Fore.BLUE, nc=colorama.Fore.RESET)
"See {bl}https://dvc.org/doc/start/data-versioning{nc} to get started!"
).format(bl=colorama.Fore.BLUE, nc=colorama.Fore.RESET)

def _normalize(self, s):
s += ":"
Expand Down

0 comments on commit 1a3764f

Please sign in to comment.