(self, *args, **options)
| 86 | ) |
| 87 | |
| 88 | def execute(self, *args, **options): |
| 89 | self.stdin = options.get("stdin", sys.stdin) # Used for testing |
| 90 | return super().execute(*args, **options) |
| 91 | |
| 92 | def handle(self, *args, **options): |
| 93 | username = options[self.UserModel.USERNAME_FIELD] |
no test coverage detected