osmo_ipa: update split_combined docs

Change-Id: I1cc6dc314fa0f147ab64ad29d9b892c3637a51c7
This commit is contained in:
Max 2018-11-26 19:03:05 +01:00
parent f0aa41e6a1
commit 98b993f010
1 changed files with 2 additions and 1 deletions

View File

@ -116,7 +116,8 @@ class IPA(object):
def split_combined(self, data):
"""
Split the data which contains multiple concatenated IPA messages into tuple (first, rest) where rest contains remaining messages, first is the single IPA message
Split the data which contains multiple concatenated IPA messages into tuple (first, rest) where 'rest' contains
remaining messages and 'first' is the single IPA message. No headers are stripped in 'first' or 'rest'.
"""
if data == None or len(data) == 0:
return None, None