Skip to content

Commit 44d2e2c

Browse files
committed
chore: eliminate disparate comma situation
Signed-off-by: Ben Selwyn-Smith <[email protected]>
1 parent c738327 commit 44d2e2c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/macaron/slsa_analyzer/analyzer.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1114,7 +1114,10 @@ def _determine_package_registries(self, analyze_ctx: AnalyzeContext) -> None:
11141114
for build_tool in build_tools:
11151115
if package_registry.is_detected(build_tool):
11161116
analyze_ctx.dynamic_data["package_registries"].append(
1117-
PackageRegistryInfo(build_tool=build_tool, package_registry=package_registry)
1117+
PackageRegistryInfo(
1118+
build_tool=build_tool,
1119+
package_registry=package_registry,
1120+
)
11181121
)
11191122

11201123

0 commit comments

Comments
 (0)