I updated eikon in Python to version 1.1.8 and get the following error when running my code:
                while True:
                    try:
                        loop_screen, error =ek.get_data(each_request,fields)
                        break
                        
                    except ek.EikonError as err:
                        if err.err_code != 2504:
                            # request failed with other reason than 2504 error code
                            break
The error is AttributeError: 'EikonError' object has no attribute 'err_code'.
Could you please help me and tell me what to do?
Thanks