Skip to content
Snippets Groups Projects
Commit b77e1b13 authored by Jason Salyers's avatar Jason Salyers
Browse files

Merge branch 'jsalyers-alembic' into 'autoclave'

[JES] Pull in a change for accounts.py from the public hivemind repo....

See merge request blocktrades/hivemind!2
parents a2bc3b6e 232842fa
No related branches found
No related tags found
No related merge requests found
......@@ -58,12 +58,17 @@ class Accounts:
@classmethod
def get_id(cls, name):
"""Get account id by name. Throw if not found."""
if isinstance(name, list):
assert name[0] in cls._ids, "account does not exist or was not registered"
return cls._ids[name[0]]
assert name in cls._ids, "account does not exist or was not registered"
return cls._ids[name]
@classmethod
def exists(cls, name):
"""Check if an account name exists."""
if isinstance(name, list):
return name[0] in cls._ids
return name in cls._ids
@classmethod
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment