Skip to content

Commit

Permalink
Updated to correct python version
Browse files Browse the repository at this point in the history
  • Loading branch information
ennamarie19 committed Sep 3, 2024
1 parent fba219c commit 9964341
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuzzing/textdistance_fuzzer.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import itertools
import sys
from collections import defaultdict
from typing import List
from typing import List, Dict, Type

import atheris

Expand Down Expand Up @@ -47,7 +47,7 @@ class FuzzTarget:

FUZZ_TARGETS: List[FuzzTarget] = []

CONSTRAINT_MEMORY: dict[type, InitializationConstraints] = defaultdict(InitializationConstraints)
CONSTRAINT_MEMORY: Dict[Type, InitializationConstraints] = defaultdict(InitializationConstraints)


def initialize_fuzz_options():
Expand Down

0 comments on commit 9964341

Please sign in to comment.