Skip to content

Commit 9d3b441

Browse files
committed
Fix styling.
1 parent 2bbe452 commit 9d3b441

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/setuptools_scm/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ def _do_parse(config):
9595
version = parse_result or _version_from_entrypoints(config, fallback=True)
9696
else:
9797
# include fallbacks after dropping them from the main entrypoint
98-
version = _version_from_entrypoints(config) or _version_from_entrypoints(config, fallback=True)
98+
version = _version_from_entrypoints(config) or _version_from_entrypoints(
99+
config, fallback=True
100+
)
99101

100102
if version:
101103
return version

0 commit comments

Comments
 (0)