ansible-test - Correct CLI arg type and annotation (#84664)

pull/84667/head
Matt Clay 10 months ago committed by GitHub
parent 4cc47307ef
commit 4b38456e4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -364,4 +364,4 @@ class CoverageCombineConfig(CoverageConfig):
self.stub: bool = args.stub
# only available to coverage combine
self.export: str = args.export if 'export' in args else False
self.export: str | None = args.export if 'export' in args else None

Loading…
Cancel
Save