Skip to content

Commit

Permalink
Fix bitmask_to_string rename. (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
axlan authored Jun 26, 2024
2 parents 658bde5 + ffb96e9 commit 63a35a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/fusion_engine_client/messages/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ def __new__(cls, *args, **kwargs):

def __repr__(self):
return f'{self.__class__.__name__}(value=0x{self.value:02x} ' \
f'({SatelliteTypeMask.bitmask_to_string(self.value)}))'
f'({SatelliteTypeMask.to_string(self.value)}))'

class FrequencyBandMaskVal(IntegerVal):
"""!
Expand Down Expand Up @@ -511,7 +511,7 @@ def __new__(cls, *args, **kwargs):

def __repr__(self):
return f'{self.__class__.__name__}(value=0x{self.value:02x} ' \
f'({FrequencyBandMask.bitmask_to_string(self.value)}))'
f'({FrequencyBandMask.to_string(self.value)}))'

class CoarseOrientation(NamedTuple):
"""!
Expand Down

0 comments on commit 63a35a3

Please sign in to comment.