Removes leftover class variable in ...

the client identity controller
This commit is contained in:
Carlos Nihelton 2022-05-12 15:40:13 -03:00
parent aea54f961e
commit ad3734f2b6
No known key found for this signature in database
GPG Key ID: 6FE346D245197E9A
1 changed files with 1 additions and 2 deletions

View File

@ -16,7 +16,7 @@
import logging import logging
from subiquity.client.controller import SubiquityTuiController from subiquity.client.controller import SubiquityTuiController
from subiquity.common.types import IdentityData, UsernameValidation from subiquity.common.types import IdentityData
from subiquity.ui.views import IdentityView from subiquity.ui.views import IdentityView
log = logging.getLogger('subiquity.client.controllers.identity') log = logging.getLogger('subiquity.client.controllers.identity')
@ -25,7 +25,6 @@ log = logging.getLogger('subiquity.client.controllers.identity')
class IdentityController(SubiquityTuiController): class IdentityController(SubiquityTuiController):
endpoint_name = 'identity' endpoint_name = 'identity'
username_validation = UsernameValidation.OK
async def make_ui(self): async def make_ui(self):
data = await self.endpoint.GET() data = await self.endpoint.GET()