Gmail.py else statement not needed

We don't need speficify the else here. Always is else.
This commit is contained in:
Rodolfo García Peñas (kix) 2020-11-01 08:51:03 +01:00
parent d50a28a68f
commit 4198fa8201

View File

@ -73,8 +73,8 @@ class GmailRepository(IMAPRepository):
if port is None:
return 993
else:
return port
return port
def getssl(self):
ssl = self.getconfboolean('ssl', None)