Attention is currently required from: pespin.
fixeria has posted comments on this change. ( https://gerrit.osmocom.org/c/pysim/+/32406 )
Change subject: ts_51_011: fix EF_ServiceTable: use self for static method ......................................................................
Patch Set 1:
(1 comment)
Patchset:
PS1:
I see no point in passing self if it's static.
Using class name to access own methods breaks inheritance: if you define a child class and redefine the `_bit_byte_offset_for_service()` in it, the `_encode_bin()` would still be using parent's version. It was my initial plan to add a child class for `EF_CST` and I faced this problem, but then I figured out that it uses the same encoding as `EF_SST`.