From 3688b6a8df88a5a5ccc02ab7786c17622ace1c14 Mon Sep 17 00:00:00 2001 From: Charlton Austin Date: Wed, 26 Jul 2017 12:37:18 -0400 Subject: [PATCH] style(endpoints/api/suconfig_models_interface.py): formatted file ### Description of Changes Issue: https://coreosdev.atlassian.net/browse/QUAY-750 ## Reviewer Checklist - [ ] It works! - [ ] Comments provide sufficient explanations for the next contributor - [ ] Tests cover changes and corner cases - [ ] Follows Quay syntax patterns and format --- endpoints/api/suconfig_models_interface.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/endpoints/api/suconfig_models_interface.py b/endpoints/api/suconfig_models_interface.py index 13cd1e774..9f8cbd0cb 100644 --- a/endpoints/api/suconfig_models_interface.py +++ b/endpoints/api/suconfig_models_interface.py @@ -1,11 +1,13 @@ from abc import ABCMeta, abstractmethod from six import add_metaclass + @add_metaclass(ABCMeta) class SuperuserConfigDataInterface(object): """ Interface that represents all data store interactions required by the superuser config API. """ + @abstractmethod def is_valid(self): """