summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2020-05-14 09:48:55 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2020-05-14 09:48:55 +0200
commitaaeb15ec1a841b7581d10db4f403a571d5d58e19 (patch)
tree824d7488ea365d57d2ae9d31b88fcba570585f07
parent2ae776ad2ea1951d03ac661c13efa9518f73056a (diff)
downloadgobject-introspection-aaeb15ec1a841b7581d10db4f403a571d5d58e19.tar.gz
flake8: fix invalid placeholder in GtkDocAnnotatable repr format string
The newest flake8 has started to detect this.
-rw-r--r--giscanner/annotationparser.py2
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):
'''