Commit 91914982 authored by canterburym's avatar canterburym Committed by canterburym
Browse files

Fixing empty dict linter bug

parent 38e97f0e
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...")