style(endpoints/api/repoemail): ran yapf

### Description of Changes

Issue: https://coreosdev.atlassian.net/browse/QUAY-626

## Reviewer Checklist

- [ ] It works!
- [ ] Comments provide sufficient explanations for the next contributor
- [ ] Tests cover changes and corner cases
- [ ] Follows Quay syntax patterns and format
This commit is contained in:
Charlton Austin 2017-07-13 15:34:48 -04:00
parent d01b55f27d
commit bbe9b033d0
4 changed files with 31 additions and 17 deletions

View file

@ -5,8 +5,7 @@ import logging
from flask import request, abort
from endpoints.api import (resource, nickname, require_repo_admin, RepositoryParamResource,
log_action, validate_json_request, internal_only,
path_param, show_if)
log_action, validate_json_request, internal_only, path_param, show_if)
from endpoints.api.repoemail_models_pre_oci import pre_oci_model as model
from endpoints.exception import NotFound
from app import tf
@ -15,7 +14,6 @@ from util.useremails import send_repo_authorization_email
import features
logger = logging.getLogger(__name__)
@ -26,6 +24,7 @@ logger = logging.getLogger(__name__)
@path_param('email', 'The e-mail address')
class RepositoryAuthorizedEmail(RepositoryParamResource):
""" Resource for checking and authorizing e-mail addresses to receive repo notifications. """
@require_repo_admin
@nickname('checkRepoEmailAuthorized')
def get(self, namespace, repository, email):
@ -36,7 +35,6 @@ class RepositoryAuthorizedEmail(RepositoryParamResource):
return record.to_dict()
@require_repo_admin
@nickname('sendAuthorizeRepoEmail')
def post(self, namespace, repository, email):