Skip to content

Commit a047c24

Browse files
committed
Fix formatting
Signed-off-by: Arthur Chan <[email protected]>
1 parent f441088 commit a047c24

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/fuzz_introspector/frontends/frontend_go.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,8 @@ def extract_local_variable_type(self,
743743
decl_name = left_child.text.decode()
744744

745745
if right.type == 'identifier':
746-
decl_type = self.var_map.get(right.text.decode(), '')
746+
decl_type = self.var_map.get(
747+
right.text.decode(), '')
747748
if '[' in decl_type and ']' in decl_type:
748749
decl_type = decl_type.split(']', 1)[-1]
749750
elif decl_type == 'string':

0 commit comments

Comments
 (0)