Skip to content

Commit

Permalink
PEP-8 for FactoryMixIn
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthchirp committed Jun 26, 2018
1 parent 24f1989 commit 0399063
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ispyb/interface/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class IF(
ABC,
ispyb.interface.factory.factory_mixin,
ispyb.interface.factory.FactoryMixIn,
ispyb.model.interface.ObjectModelMixIn):
'''ISPyB connection interface definition object.'''

Expand Down
2 changes: 1 addition & 1 deletion ispyb/interface/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import importlib

class factory_mixin():
class FactoryMixIn():
def _get_data_area(self, module, classname):
'''Helper function to instantiate a data area or return a cached instance.'''
if hasattr(self, '_cache_' + module):
Expand Down

0 comments on commit 0399063

Please sign in to comment.