Guest User

Untitled

a guest
Jun 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class MyModel(models.Model):
  2. some_field = models.CharField()
  3.  
  4. class MyManager:
  5. def __init__(self, model: "MyModel"):
  6. self.model = model
  7.  
  8. def print_some_field(self):
  9. print(self.model.some_field)
Add Comment
Please, Sign In to add comment