Skip to content

Commit

Permalink
Fix pylint failures
Browse files Browse the repository at this point in the history
  • Loading branch information
KieranBrantnerMagee committed Oct 1, 2020
1 parent 3a06ee3 commit f22a054
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1109,14 +1109,14 @@ def __init__(self, message):

@property
def properties(self):
return uamqp.message.MessageProperties(message_id = self._message.properties.message_id,
user_id = self._message.properties.user_id,
to = self._message.properties.to,
subject = self._message.properties.subject,
reply_to = self._message.properties.reply_to,
correlation_id = self._message.properties.correlation_id,
content_type = self._message.properties.content_type,
content_encoding = self._message.properties.content_encoding
return uamqp.message.MessageProperties(message_id=self._message.properties.message_id,
user_id=self._message.properties.user_id,
to=self._message.properties.to,
subject=self._message.properties.subject,
reply_to=self._message.properties.reply_to,
correlation_id=self._message.properties.correlation_id,
content_type=self._message.properties.content_type,
content_encoding=self._message.properties.content_encoding
)

# NOTE: These are disabled pending arch. design and cross-sdk consensus on
Expand Down

0 comments on commit f22a054

Please sign in to comment.