Skip to content

Commit d030841

Browse files
committed
type error
1 parent b4d1811 commit d030841

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fuzz/build_fuzz.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def main():
233233
sys.exit(1)
234234

235235
# Image building workflow
236-
image_results = {}
236+
image_results: dict[str, bool] = {}
237237
if args.mode in ['image', 'both']:
238238
logging.info("\n" + "="*60)
239239
logging.info(f"Starting Docker image builds for {len(projects)} projects")
@@ -257,7 +257,7 @@ def main():
257257
logging.error(f"❌ Failed to save image results: {e}")
258258

259259
# Fuzzer building workflow
260-
fuzzer_results = {}
260+
fuzzer_results: dict[str, bool] = {}
261261
fuzz_projects = []
262262
if args.mode in ['fuzzer', 'both']:
263263
logging.info("\n" + "="*60)

0 commit comments

Comments
 (0)