pySim/profile: Change match_with_profile from static to class method

This was suggested by vyanitskiy during gerrit patch review in
https://gerrit.osmocom.org/c/pysim/+/38049 in order to make the
upcoming eUICC CardProfiles simpler.

Change-Id: Ia7c049b31cb1c5c5bb682406d9dd7a73bcd43185
This commit is contained in:
Harald Welte
2024-09-16 13:01:14 +02:00
committed by laforge
parent bd762c77ae
commit 5f2dfc28ff
4 changed files with 8 additions and 8 deletions

View File

@@ -1192,8 +1192,8 @@ class CardProfileSIM(CardProfile):
ret['life_cycle_status_int'] = 'terminated'
return ret
@staticmethod
def match_with_card(scc: SimCardCommands) -> bool:
@classmethod
def match_with_card(cls, scc: SimCardCommands) -> bool:
return match_sim(scc)