Commit c43e765a authored by canterburym's avatar canterburym
Browse files

Fixing empty dict linter bug

parent 9f58e283
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -194,7 +194,7 @@ def lintASN1File (asnFile):
def lintASN1Files (fileList):
    if len(fileList) == 0:
        logging.warning ("No files specified")
        return []
        return {}

    errorMap = {}
    logging.info("Checking files...")