Merge pull request #308 from bjmarfito/main

Changed 'is' to '==' to the SentinelWrapper.py to remove warning
LT1AB
Ryan Burns 2021-07-01 21:37:41 -07:00 committed by GitHub
commit 36b6cdff06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ class ConfigParser:
# Looks for string between $ sysmbols in the common subheading in config file
def __parseString(self, iString):
if iString is '':
if iString == '':
return iString
elif isinstance(self.common, (dict)):
# Case when "common" parameters are read from the configuration file