From 3371f389918feb4b428dfd129464c555852b4189 Mon Sep 17 00:00:00 2001 From: ng0 Date: Sat, 12 Oct 2019 18:17:27 +0000 Subject: more python format --- contrib/scripts/find_typedefs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'contrib/scripts/find_typedefs.py') diff --git a/contrib/scripts/find_typedefs.py b/contrib/scripts/find_typedefs.py index 804eae235..965be3c34 100644 --- a/contrib/scripts/find_typedefs.py +++ b/contrib/scripts/find_typedefs.py @@ -4,7 +4,6 @@ import os import re import sys - debug = False @@ -14,7 +13,8 @@ def get_td_from_function_signature(line, file, num): left_paren += 1 li = line[left_paren:] right_paren = line.find(')') - if right_paren > 0 and right_paren > left_paren and line[right_paren:].find('(') >= 0: + if right_paren > 0 and right_paren > left_paren and line[ + right_paren:].find('(') >= 0: fname = line[:right_paren] fname = fname.lstrip(' ').lstrip('*').lstrip(' ').rstrip(' ') if len(fname) > 0: @@ -70,7 +70,7 @@ def find_typedefs(file): td_line.append(l[rightcbrace + 1:]) else: td_line.append(l) - if len(l) > 0 and l[-1] == ';' and(not td_struct or td_level == 0): + if len(l) > 0 and l[-1] == ';' and (not td_struct or td_level == 0): td_line = ' '.join(td_line) td_line = td_line[:-1] if len(td_line) > 0: -- cgit v1.2.3