Commit 1fc96358 authored by Vladimir Malenovsky's avatar Vladimir Malenovsky
Browse files

do not apply string limit check in enc/dec commented lines

parent 95b22ea9
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ if __name__ == "__main__":
            if skiplines > 0:
                skiplines = skiplines - 1
            else:
                if "//" in line and len(line) > args.max_length:
                if "//" in line and all(x not in line for x in ["IVAS_cod", "IVAS_dec", "IVAS_rend"]) and len(line) > args.max_length:
                    exceeded.append(line)

    if exceeded: