mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
pylint: Enable and fix singleton-comparison warnings
This commit is contained in:
parent
784ae91b41
commit
5b10ff1216
@ -73,7 +73,7 @@ copyright = '2016-2021, Ethereum'
|
|||||||
with open('../CMakeLists.txt', 'r', encoding='utf8') as f:
|
with open('../CMakeLists.txt', 'r', encoding='utf8') as f:
|
||||||
version = re.search('PROJECT_VERSION "([^"]+)"', f.read()).group(1)
|
version = re.search('PROJECT_VERSION "([^"]+)"', f.read()).group(1)
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
if os.path.isfile('../prerelease.txt') != True or os.path.getsize('../prerelease.txt') == 0:
|
if not os.path.isfile('../prerelease.txt') or os.path.getsize('../prerelease.txt') == 0:
|
||||||
release = version
|
release = version
|
||||||
else:
|
else:
|
||||||
# This is a prerelease version
|
# This is a prerelease version
|
||||||
|
@ -18,7 +18,7 @@ def read_file(file_name):
|
|||||||
with open(file_name, "r", encoding="latin-1" if is_latin else ENCODING) as f:
|
with open(file_name, "r", encoding="latin-1" if is_latin else ENCODING) as f:
|
||||||
content = f.read()
|
content = f.read()
|
||||||
finally:
|
finally:
|
||||||
if content == None:
|
if content is None:
|
||||||
print(f"Error reading: {file_name}")
|
print(f"Error reading: {file_name}")
|
||||||
return content
|
return content
|
||||||
|
|
||||||
|
@ -27,7 +27,6 @@ disable=
|
|||||||
pointless-string-statement,
|
pointless-string-statement,
|
||||||
redefined-builtin,
|
redefined-builtin,
|
||||||
redefined-outer-name,
|
redefined-outer-name,
|
||||||
singleton-comparison,
|
|
||||||
too-few-public-methods,
|
too-few-public-methods,
|
||||||
too-many-public-methods,
|
too-many-public-methods,
|
||||||
ungrouped-imports
|
ungrouped-imports
|
||||||
|
@ -40,7 +40,7 @@ def writeSourceToFile(lines):
|
|||||||
filePath, srcName = extractSourceName(lines[0])
|
filePath, srcName = extractSourceName(lines[0])
|
||||||
# print("sourceName is ", srcName)
|
# print("sourceName is ", srcName)
|
||||||
# print("filePath is", filePath)
|
# print("filePath is", filePath)
|
||||||
if filePath != False:
|
if filePath:
|
||||||
os.system("mkdir -p " + filePath)
|
os.system("mkdir -p " + filePath)
|
||||||
with open(srcName, mode='a+', encoding='utf8', newline='') as f:
|
with open(srcName, mode='a+', encoding='utf8', newline='') as f:
|
||||||
createdSources.append(srcName)
|
createdSources.append(srcName)
|
||||||
|
@ -50,7 +50,7 @@ class JsonRpcProcess:
|
|||||||
# Note, we should make use of timeout to avoid infinite blocking if nothing is received.
|
# Note, we should make use of timeout to avoid infinite blocking if nothing is received.
|
||||||
CONTENT_LENGTH_HEADER = "Content-Length: "
|
CONTENT_LENGTH_HEADER = "Content-Length: "
|
||||||
CONTENT_TYPE_HEADER = "Content-Type: "
|
CONTENT_TYPE_HEADER = "Content-Type: "
|
||||||
if self.process.stdout == None:
|
if self.process.stdout is None:
|
||||||
return None
|
return None
|
||||||
message_size = None
|
message_size = None
|
||||||
while True:
|
while True:
|
||||||
@ -84,7 +84,7 @@ class JsonRpcProcess:
|
|||||||
return json_object
|
return json_object
|
||||||
|
|
||||||
def send_message(self, method_name: str, params: Optional[dict]) -> None:
|
def send_message(self, method_name: str, params: Optional[dict]) -> None:
|
||||||
if self.process.stdin == None:
|
if self.process.stdin is None:
|
||||||
return
|
return
|
||||||
message = {
|
message = {
|
||||||
'jsonrpc': '2.0',
|
'jsonrpc': '2.0',
|
||||||
@ -246,7 +246,7 @@ class SolidityLSPTestSuite: # {{{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if expose_project_root == False:
|
if not expose_project_root:
|
||||||
params['rootUri'] = None
|
params['rootUri'] = None
|
||||||
lsp.call_method('initialize', params)
|
lsp.call_method('initialize', params)
|
||||||
lsp.send_notification('initialized')
|
lsp.send_notification('initialized')
|
||||||
|
Loading…
Reference in New Issue
Block a user