Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. transaction_model = PaymentTransaction if transaction_type == 'payments' else LookupTransaction
  2.  
  3. # the code above in more vebose way
  4.  
  5. if transaction_type == 'payments':
  6. transaction_model = PaymentTransaction
  7. else:
  8. transaction_model = LookupTransaction
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement