Formatter dan kompiler Python online

12345678910111213141516171819class BaseConnection:    def _init_(self, credentials):        self.rs_connection = RedshiftConnection(credentials)    def set_timeout(self, timeout=10):        self.rs_connection.timeout = timeout        class MyDBConnection(BaseConnection):    def _init_(self, credentials):        self.rs_connection = RedshiftConnection(credentials)        super.__init__(self, credentials)            def set_timeout(self, timeout=20):        self.rs_connection.timeout = timeoutcredentials = {'username': 'user1', 'password': 'pass1'}my_db_conn = MyDBConnection(credentials)my_db_conn.set_timeout()print(my_db_conn.rs_connection.timeout)X
Wandering Wren