Skip to content

Commit b79ee27

Browse files
committed
Fix linter errors.
1 parent ee9f214 commit b79ee27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

epoxy/registry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from collections import defaultdict, OrderedDict
1+
from collections import OrderedDict, defaultdict
22
from enum import Enum
33
from functools import partial
44
from graphql.core.type import (
@@ -63,13 +63,13 @@ def __init__(self):
6363
self._registered_types_can_be = defaultdict(set)
6464
self._pending_types_can_be = defaultdict(set)
6565
self._proxy = ResolvedRegistryProxy(self)
66+
self._mutations = {}
6667
self.ObjectType = self._create_object_type_class()
6768
self.InputType = self._create_input_type_class()
6869
self.Implements = ClassTypeCreator(self, self._create_object_type_class)
6970
self.Union = ClassTypeCreator(self, self._create_union_type_class)
7071
self.Interface = self._create_interface_type_class()
7172
self.Mutation = self._create_mutation_type_class()
72-
self._mutations = {}
7373

7474
for type in builtin_scalars:
7575
self.Register(type)

0 commit comments

Comments
 (0)