Skip to content

Commit

Permalink
Fixup lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Borgstrom committed Jan 20, 2016
1 parent e148ea2 commit 788b672
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions salt/renderers/pyobjects.py
Expand Up @@ -286,12 +286,14 @@ class RedHat:


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():
Expand Down

0 comments on commit 788b672

Please sign in to comment.