Skip to content

Commit

Permalink
Fix single-quote
Browse files Browse the repository at this point in the history
  • Loading branch information
ataffanel committed Apr 14, 2021
1 parent 2fa0bde commit 4687d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cflib/crazyflie/mem/deck_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def _parse(self, data):
self.required_hash, self.required_length, self._base_address, _name = struct.unpack('<LLL19s', data[1:])
self.name = _name.split(b'\x00')[0].decode()
except Exception as e:
logger.warning(f"Error while decoding deck mem ({e}), skipping!")
logger.warning(f'Error while decoding deck mem ({e}), skipping!')
self._bit_field = 0


Expand Down

0 comments on commit 4687d0f

Please sign in to comment.