Created
December 10, 2017 20:47
-
-
Save umutcoskun/6e6f12d79e3619829077f56abbbedbf4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@benchmark | |
@sleep(3) | |
class User(object): | |
is_active = True | |
def __init__(self, name, permissions): | |
self.name = name | |
self.permissions = permissions | |
user = User('umutcoskun', ['can_view_dashboard']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment