Update server.py

This commit is contained in:
Namhyeon Go 2024-03-06 14:13:03 +09:00 committed by GitHub
parent d0d640ec72
commit 0b5d733dfb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -497,7 +497,7 @@ class Extension():
@classmethod
def get_connector(cls, connection_type):
for extension in cls.extensions:
if extension.type == "connector" and extension.connection_type = connection_type:
if extension.type == "connector" and extension.connection_type == connection_type:
return extension
return None