mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fixup lint errors
This commit is contained in:
parent
e148ea2d52
commit
788b672e3a
1 changed files with 4 additions and 2 deletions
|
@ -286,12 +286,14 @@ except NameError:
|
|||
|
||||
|
||||
class PyobjectsModule(object):
|
||||
'''This projects a wrapper for bare imports.'''
|
||||
'''This provides a wrapper for bare imports.'''
|
||||
|
||||
def __init__(self, name, attrs):
|
||||
self.name = name
|
||||
self.__dict__ = attrs
|
||||
|
||||
def __repr__(self):
|
||||
return "<module '%s' (pyobjects)>" % self.name
|
||||
return "<module '{0!s}' (pyobjects)>".format(self.name)
|
||||
|
||||
|
||||
def load_states():
|
||||
|
|
Loading…
Add table
Reference in a new issue