From fc2055de8caecba1d97dd6101471f8f58c81671c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolfo=20Garc=C3=ADa=20Pe=C3=B1as=20=28kix=29?= Date: Sun, 1 Nov 2020 08:54:16 +0100 Subject: [PATCH] Gmail.py else statement not needed Always is else here. --- offlineimap/repository/Gmail.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/offlineimap/repository/Gmail.py b/offlineimap/repository/Gmail.py index b04a92f..1d8bd38 100644 --- a/offlineimap/repository/Gmail.py +++ b/offlineimap/repository/Gmail.py @@ -84,8 +84,8 @@ class GmailRepository(IMAPRepository): # GMail. Maybe this should look more similar to gethost & # we could just rely on the global "ssl = yes" default. return True - else: - return ssl + + return ssl def getpreauthtunnel(self): return None