python - PyCharm bugging when trying to have multi-inheritance -


as try make multi-inheritance class, got pycharm freezing...

oh, gave me feed back:

enter image description here

i on mac book air, 8g of ram.

did had same experience ?

edit

the code :

from library.connect_to_people      import connect_to_people library.get_infos              import get_infos library.superdriver            import superdriver   class website(superdriver, get_infos, connect_to_people):      def __init__(self, username, password):         """         renvoie un objet avec un driver selenium.         """         assert(type(username) == str)         assert(type(password) == str)          superdriver.__init__(self)         get_infos.__init__(self)         connect_to_people.__init__(self) 


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -