From 09b178f4169c0aef573d766509793926582fa626 Mon Sep 17 00:00:00 2001 From: Oliver Chang Date: Wed, 7 Dec 2022 15:03:41 +1100 Subject: [PATCH] Remove network call from github_scarecrow. This doesn't work in our fuzzing env. --- projects/github_scarecrow/fakelib.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/projects/github_scarecrow/fakelib.py b/projects/github_scarecrow/fakelib.py index 2a2c94866..95f3d5399 100644 --- a/projects/github_scarecrow/fakelib.py +++ b/projects/github_scarecrow/fakelib.py @@ -1,10 +1,9 @@ -import requests + RAN_ONCE = False def do_something(data): global RAN_ONCE if not RAN_ONCE: - print(requests.get('https://google.com')) RAN_ONCE = True if not data: return