Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix pylint
  • Loading branch information
yunhaoling committed Jul 14, 2020
commit 91ea2500cf8147a82dbb8d67ce4e463c0bb0ffb5
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def content_type(self, val):
@property
def correlation_id(self):
# type: () -> str
# pylint: disable=protected-access
# pylint: line-too-long
"""The correlation identifier.

Allows an application to specify a context for the message for the purposes of correlation, for example
Expand Down Expand Up @@ -341,7 +341,7 @@ def message_id(self, val):
@property
def reply_to(self):
# type: () -> str
# pylint: disable=protected-access
# pylint: line-too-long
"""The address of an entity to send replies to.

This optional and application-defined value is a standard way to express a reply path to the receiver of
Expand All @@ -363,7 +363,7 @@ def reply_to(self, val):
@property
def reply_to_session_id(self):
# type: () -> str
# pylint: disable=protected-access
# pylint: line-too-long
"""The session identifier augmenting the `reply_to` address.

This value augments the `reply_to` information and specifies which session id should be set for the reply
Expand Down