Skip to content

Commit 8c83240

Browse files
committed
Linting
1 parent ef8d3fa commit 8c83240

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.bumpversion.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ tag = True
1010
[bumpversion:file:README.rst]
1111

1212
[bumpversion:file:repo_helper/__init__.py]
13-
1413
search = : str = "{current_version}"
1514
replace = : str = "{new_version}"
1615

repo_helper/cli/commands/wizard.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def wizard() -> None:
5555
from consolekit.terminal_colours import Fore
5656
from dulwich.errors import NotGitRepository
5757
from email_validator import EmailNotValidError, validate_email # type: ignore
58-
from ruamel.yaml.scalarstring import SingleQuotedScalarString
58+
from ruamel.yaml import scalarstring
5959
from southwark.repo import Repo
6060

6161
path = PathPlus.cwd()
@@ -171,7 +171,7 @@ def wizard() -> None:
171171
"short_desc": short_desc,
172172
}
173173

174-
data = {k: SingleQuotedScalarString(v) for k, v in data.items()}
174+
data = {k: scalarstring.SingleQuotedScalarString(v) for k, v in data.items()}
175175

176176
output = StringIO()
177177
yaml.round_trip_dump(data, output, explicit_start=True)

0 commit comments

Comments
 (0)