refactor the getid method base.py

Refer to a merged commit.
https://review.openstack.org/#/c/588983/

Change-Id: I4d92b2637d1176bef0df6e145f3515933f5a531a
This commit is contained in:
wanghui 2018-11-08 20:27:48 +08:00
parent dfe15c51b7
commit 8c19a8f813

View File

@ -32,10 +32,7 @@ def getid(obj):
Abstracts the common pattern of allowing both an object or an
object's ID (UUID) as a parameter when dealing with relationships.
"""
try:
return obj.id
except AttributeError:
return obj
return getattr(obj, 'id', obj)
class Manager(object):