Skip to content

Commit

Permalink
fix styling
Browse files Browse the repository at this point in the history
Signed-off-by: David Korczynski <david@adalogics.com>
  • Loading branch information
DavidKorczynski committed Feb 17, 2024
1 parent 67c023d commit c7300a7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/fuzz_introspector/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -686,10 +686,9 @@ def extract_namespace(mangled_function_name):
logger.info("Demangling: %s" % (mangled_function_name))
demangled_func_name = utils.demangle_cpp_func(mangled_function_name)
logger.info("Demangled name: %s" % (demangled_func_name))
if not "::" in demangled_func_name:
if "::" not in demangled_func_name:
return []

#before_parens = demangled_func_name.split("(")[0]
split_namespace = demangled_func_name.split("::")
name_spaces = []
for elem in split_namespace:
Expand Down

0 comments on commit c7300a7

Please sign in to comment.