My data set is get like
{'ProxyTargetURI': 'fwf', 'account_id': 'ewff', 'aclPermissionSet': None, 'acl_path_prefix': None},
{'ProxyTargetURI': None, 'account_id': None, 'aclPermissionSet': 'ee', 'acl_path_prefix': 'ef'}
So now i want to change data like this example which is not included None value
{'ProxyTargetURI': 'fwf', 'account_id': 'ewff'},
{'aclPermissionSet': 'ee', 'acl_path_prefix': 'ef'}
So i wonder how to change it
Already i use dropna()
So plz teach me