laforge has submitted this change. ( https://gerrit.osmocom.org/c/pysim/+/37608?usp=email )
Change subject: runtime: add missing docstring ......................................................................
runtime: add missing docstring
Change-Id: Iee2702c5326f1ec2a32c40b675ba1647387c40c8 Related: OS#6092 --- M pySim/runtime.py 1 file changed, 11 insertions(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, approved
diff --git a/pySim/runtime.py b/pySim/runtime.py index 3ef9b2d..5a93645 100644 --- a/pySim/runtime.py +++ b/pySim/runtime.py @@ -402,6 +402,7 @@ return self.selected_file.decode_select_response(data)
def get_file_for_selectable(self, name: str): + """Get the related CardFile object for a specified filename.""" sels = self.selected_file.get_selectables() return sels[name]