Remove GC. Not needed on newer Cpy versions

This commit is contained in:
Kyle Brown
2020-10-09 18:32:20 -07:00
parent 026308bbeb
commit 1a4e81a2e5
4 changed files with 13 additions and 32 deletions

View File

@@ -1,5 +1,4 @@
import digitalio
import gc
def intify_coordinate(row, col):
@@ -37,7 +36,6 @@ class MatrixScanner:
len(unique_pins) == self.len_cols + self.len_rows
), 'Cannot use a pin as both a column and row'
del unique_pins
gc.collect()
self.diode_orientation = diode_orientation