Skip to content

Commit

Permalink
added delete method
Browse files Browse the repository at this point in the history
via Frederik
  • Loading branch information
ninastoessinger committed Oct 17, 2014
1 parent b25a23c commit 51a2936
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Touche.roboFontExt/lib/touche/touche.py
Expand Up @@ -22,6 +22,10 @@ class Touche(object):
def __init__(self, font):
self.font = font
self.flatKerning = font.naked().flatKerning

def __del__(self):
self.font = None
self.flatKerning = None

def findTouchingPairs(self, glyphs):
"""Finds all touching pairs in a list of glyphs.
Expand Down

0 comments on commit 51a2936

Please sign in to comment.