We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4d1811 commit d030841Copy full SHA for d030841
1 file changed
fuzz/build_fuzz.py
@@ -233,7 +233,7 @@ def main():
233
sys.exit(1)
234
235
# Image building workflow
236
- image_results = {}
+ image_results: dict[str, bool] = {}
237
if args.mode in ['image', 'both']:
238
logging.info("\n" + "="*60)
239
logging.info(f"Starting Docker image builds for {len(projects)} projects")
@@ -257,7 +257,7 @@ def main():
257
logging.error(f"❌ Failed to save image results: {e}")
258
259
# Fuzzer building workflow
260
- fuzzer_results = {}
+ fuzzer_results: dict[str, bool] = {}
261
fuzz_projects = []
262
if args.mode in ['fuzzer', 'both']:
263
0 commit comments