diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-01-16 20:28:38 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-01-16 20:28:38 -0500 |
commit | 705b50c32b04176f5a96c19c3870b939f4abf108 (patch) | |
tree | 53e4a13cfa1c11c7d223db5c3826d513e3a1c916 /coverage/plugin.py | |
parent | a5d0d273c93744a3ec61de74cb0d0a98999d722a (diff) | |
download | python-coveragepy-705b50c32b04176f5a96c19c3870b939f4abf108.tar.gz |
Pylint didn't like .format(self=self): Argument 'self' passed by position and keyword
Diffstat (limited to 'coverage/plugin.py')
-rw-r--r-- | coverage/plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/plugin.py b/coverage/plugin.py index 0e741a9..32750a1 100644 --- a/coverage/plugin.py +++ b/coverage/plugin.py @@ -145,8 +145,8 @@ class FileReporter(object): def __repr__(self): return ( - "<{self.__class__.__name__}" - " filename={self.filename!r}>".format(self=self) + "<{this.__class__.__name__}" + " filename={this.filename!r}>".format(this=self) ) # Annoying comparison operators. Py3k wants __lt__ etc, and Py2k needs all |