Skip to content

Commit 0e773f1

Browse files
committed
fedora_messaging_request: pylint disable=E1101 on addCallback
Similar to what we were already doing for addErrback.
1 parent d085c03 commit 0e773f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cosalib/fedora_messaging_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,6 @@ def error_cb(failure):
195195
}
196196

197197
consumers = twisted_consume(callback, bindings=bindings, queues=queues)
198-
consumers.addCallback(registered_cb)
198+
consumers.addCallback(registered_cb) # pylint: disable=E1101
199199
consumers.addErrback(error_cb) # pylint: disable=E1101
200200
reactor.run(installSignalHandlers=False) # pylint: disable=E1101

0 commit comments

Comments
 (0)