I have this code in my python script
class Class(object):
    client_id = ''
    @classmethod
    def get_client_id(cls):
        return cls.client_id
class Service(object):
    @staticmethod
    def get_class():
        cls_obj = Class()
        cls_obj.client_id = 'this is client id'
        return cls_obj
print(Service.get_class().get_client_id())
but when i run the python script, it displays empty string and not the 'this is client id'. please help
 
     
    