Guest User

Untitled

a guest
Oct 16th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. COLLECTION_YESTERDAY
  2. COLLECTION_NOW
  3. COLLECTION_TOMORROW
  4.  
  5. MyClass(database[COLLECTION_NOW])
  6.  
  7. def DoMyClass(database, when='now'):
  8. times {
  9. 'now': COLLECTION_NOW,
  10. ...
  11. }
  12. collection = database[times[when]]
  13.  
  14. # Do something
Add Comment
Please, Sign In to add comment