Skip to content

Commit b9a754a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent bca733d commit b9a754a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/setuptools_scm/git.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,15 @@
1616
# If testing command in shell make sure to quote the match argument like
1717
# '*[0-9]*' as it will expand before being sent to git if there are any matching
1818
# files in current directory.
19-
DEFAULT_DESCRIBE = ["git", "describe", "--dirty", "--tags", "--long", "--match", "*[0-9]*"]
19+
DEFAULT_DESCRIBE = [
20+
"git",
21+
"describe",
22+
"--dirty",
23+
"--tags",
24+
"--long",
25+
"--match",
26+
"*[0-9]*",
27+
]
2028

2129

2230
class GitWorkdir(Workdir):

0 commit comments

Comments
 (0)