diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2020-05-14 09:48:55 +0200 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2020-05-14 09:48:55 +0200 |
commit | aaeb15ec1a841b7581d10db4f403a571d5d58e19 (patch) | |
tree | 824d7488ea365d57d2ae9d31b88fcba570585f07 /giscanner | |
parent | 2ae776ad2ea1951d03ac661c13efa9518f73056a (diff) | |
download | gobject-introspection-aaeb15ec1a841b7581d10db4f403a571d5d58e19.tar.gz |
flake8: fix invalid placeholder in GtkDocAnnotatable repr format string
The newest flake8 has started to detect this.
Diffstat (limited to 'giscanner')
-rw-r--r-- | giscanner/annotationparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/annotationparser.py b/giscanner/annotationparser.py index 16a66f33..63212963 100644 --- a/giscanner/annotationparser.py +++ b/giscanner/annotationparser.py @@ -566,7 +566,7 @@ class GtkDocAnnotatable(object): self.annotations = GtkDocAnnotations() def __repr__(self): - return "<GtkDocAnnotatable '%s' %r>" % (self.annotations, ) + return "<GtkDocAnnotatable '%s'>" % (self.annotations, ) def validate(self): ''' |