File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ tag = True
1010[bumpversion:file:README.rst]
1111
1212[bumpversion:file:repo_helper/__init__.py]
13-
1413search = : str = " {current_version}"
1514replace = : str = " {new_version}"
1615
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments