Skip to content

Commit 12df145

Browse files
committed
test(doctest): Remove unused flags
1 parent c419a37 commit 12df145

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

libvcs/cmd/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def run(
117117
Examples
118118
--------
119119
>>> git = Git(dir=tmp_path)
120-
>>> git.run(['help']) # doctest: +NORMALIZE_WHITESPACE
120+
>>> git.run(['help'])
121121
"usage: git [--version] [--help] [-C <path>]..."
122122
"""
123123

libvcs/cmd/hg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def run(
117117
Examples
118118
--------
119119
>>> hg = Hg(dir=tmp_path)
120-
>>> hg.run(['help']) # doctest: +NORMALIZE_WHITESPACE
120+
>>> hg.run(['help'])
121121
"Mercurial Distributed SCM..."
122122
"""
123123

libvcs/cmd/svn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def run(
8080
Examples
8181
--------
8282
>>> svn = Svn(dir=tmp_path)
83-
>>> svn.run(['help']) # doctest: +NORMALIZE_WHITESPACE
83+
>>> svn.run(['help'])
8484
"usage: svn <subcommand> [options] [args]..."
8585
"""
8686

0 commit comments

Comments
 (0)