pylint: Enable and fix consider-using-sys-exit warnings

This commit is contained in:
Kamil Śliwak
2021-12-21 15:30:11 +01:00
parent b65e093394
commit 449f56c15b
4 changed files with 14 additions and 14 deletions
+2 -1
View File
@@ -5,6 +5,7 @@ import fnmatch
import json
import os
import subprocess
import sys
import traceback
from typing import Any, List, Optional, Tuple, Union
@@ -871,4 +872,4 @@ class SolidityLSPTestSuite: # {{{
if __name__ == "__main__":
suite = SolidityLSPTestSuite()
exit_code = suite.main()
exit(exit_code)
sys.exit(exit_code)