Fix lint issues

This commit is contained in:
2022-05-07 18:48:45 +02:00
parent 40814c6f1f
commit fb324ad7ad
3 changed files with 1 additions and 5 deletions

View File

@@ -35,7 +35,7 @@ def main(args_test=None):
compare=args.compare,
)
excel.report()
is_test = args_test != None
is_test = args_test is not None
Files.open(excel.get_file_name(), is_test)
if args.sql:
sql = SQL(args.file)

View File

@@ -1,4 +1,3 @@
import os
from io import StringIO
from unittest.mock import patch
from .TestBase import TestBase

View File

@@ -1,6 +1,3 @@
import os
from openpyxl import load_workbook
from ...Utils import Folders
from ..TestBase import TestBase