Rename ClientID to ClientInfo since it is a pair of IDs rather than a single identifier

This commit is contained in:
Mark Haines 2015-01-28 17:16:12 +00:00
parent c18e551640
commit 3cca61e006
2 changed files with 3 additions and 3 deletions

View file

@ -121,4 +121,4 @@ class StreamToken(
return StreamToken(**d)
ClientID = namedtuple("ClientID", ("device_id", "token_id"))
ClientInfo = namedtuple("ClientInfo", ("device_id", "token_id"))