Fix typo in code
This commit is contained in:
DavidKorczynski 2022-07-06 22:49:21 +01:00 committed by GitHub
parent 7c0746c361
commit bddcf3a5cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class FuzzHttpClient:
return FuzzResponse(fdp = self.fdp)
def get(self, url, params=None, headers=None, **kwargs):
return MinimalResponse(fdp = self.fdp)
return FuzzResponse(fdp = self.fdp)
def close(self):
self.session.close()