Fixed issue related to extra semicolons and function naming convention reported by SonarQube.

This commit is contained in:
Satish V
2020-06-24 16:16:12 +05:30
committed by Akshay Joshi
parent db9d684524
commit a1fd9ea3ce
10 changed files with 13 additions and 13 deletions

View File

@@ -509,7 +509,7 @@ WHERE
server_types = ServerType.types()
for st in server_types:
if st.instanceOf(manager.ver):
if st.instance_of(manager.ver):
manager.server_type = st.stype
manager.server_cls = st
break

View File

@@ -264,7 +264,7 @@ WHERE db.oid = {0}""".format(did))
if self.ver and not self.server_type:
for st in ServerType.types():
if st.instanceOf(self.ver):
if st.instance_of(self.ver):
self.server_type = st.stype
self.server_cls = st
break