We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1724754 commit 7da4b31Copy full SHA for 7da4b31
adafruit_bitmap_font/pcf.py
@@ -324,8 +324,8 @@ def load_glyphs(self, code_points):
324
6 + self._bitmaps.glyph_count
325
)
326
metrics_compressed = self.tables[_PCF_METRICS].format & _PCF_COMPRESSED_METRICS
327
- first_metric_offset = (
328
- self.tables[_PCF_METRICS].offset + (6 if metrics_compressed else 8)
+ first_metric_offset = self.tables[_PCF_METRICS].offset + (
+ 6 if metrics_compressed else 8
329
330
metrics_size = 5 if metrics_compressed else 12
331
0 commit comments