diff options
| author | Ed Cranford <ed.cranford@rackspace.com> | 2012-04-23 12:58:21 -0500 |
|---|---|---|
| committer | Ed Cranford <ed.cranford@rackspace.com> | 2012-05-03 16:20:39 -0500 |
| commit | 01313e56fe446ea3eaa459b0cc9dcf89c043de7d (patch) | |
| tree | 0acccff1535c8feef5fd740acbac668a59b2c23e /reddwarfclient/base.py | |
| parent | 3e92682e3a8a7a1cdeee838dfa5f82a5539beb88 (diff) | |
| download | python-troveclient-01313e56fe446ea3eaa459b0cc9dcf89c043de7d.tar.gz | |
PEP8 fixes
Diffstat (limited to 'reddwarfclient/base.py')
| -rw-r--r-- | reddwarfclient/base.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/reddwarfclient/base.py b/reddwarfclient/base.py index eceabef..db627a1 100644 --- a/reddwarfclient/base.py +++ b/reddwarfclient/base.py @@ -1,7 +1,7 @@ - def isid(obj): """ - Returns true if the given object can be converted to an ID, false otherwise. + Returns true if the given object can be converted to an ID, + false otherwise. """ if hasattr(obj, "id"): return True @@ -12,4 +12,3 @@ def isid(obj): return False else: return True - |
