add comments

This commit is contained in:
Kashiko Koibumi 2024-06-26 05:10:44 +09:00
parent 909b9f2c8e
commit 45d1c62f97
No known key found for this signature in database
GPG Key ID: 8F06E069E37C40C4
2 changed files with 2 additions and 0 deletions

View File

@ -30,6 +30,7 @@ from tr import _translate
try:
SafeConfigParser = configparser.SafeConfigParser
except AttributeError:
# alpine linux, python3.12
SafeConfigParser = configparser.ConfigParser
def getSOCKSProxyType(config):

View File

@ -19,6 +19,7 @@ except ImportError:
try:
SafeConfigParser = configparser.SafeConfigParser
except AttributeError:
# alpine linux, python3.12
SafeConfigParser = configparser.ConfigParser
config_ready = Event()