Skip to content

Commit

Permalink
dont import *
Browse files Browse the repository at this point in the history
  • Loading branch information
schriftgestalt committed Jan 9, 2018
1 parent bda5f23 commit 9d82842
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions GSPen.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
"""Pens for creating glyphs in Glyphs."""
# -*- coding: utf-8 -*-
"""Pens for creating glyphs in Glyphs."""
import sys
import objc
from AppKit import *
from Foundation import *

from GlyphsApp import *
from objectsGS import RGlyph, GSLINE, GSCURVE, GSQCURVE, GSOFFCURVE, GSSHARP, GSSMOOTH
Expand Down
6 changes: 3 additions & 3 deletions objectsGS.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
import weakref
from GlyphsApp import *
from GlyphsApp import Proxy, UserDataProxy
from AppKit import *
from Foundation import *
from AppKit import NSView, NSColor, NSRectFill, NSChangeCleared
from Foundation import NSNumber, NSMutableArray, NSAffineTransform, NSClassFromString, NSMinX, NSMinY, NSMaxX, NSMaxY
from WebKit import WebView
import traceback

from robofab import RoboFabError, RoboFabWarning, ufoLib
Expand Down Expand Up @@ -1305,7 +1306,6 @@ def _set_text(self, value):

text = property(_get_text, _set_text, doc="raw feature text.")

from AppKit import *
from vanilla.vanillaBase import VanillaBaseObject

class GlyphPreviewView(NSView):
Expand Down

0 comments on commit 9d82842

Please sign in to comment.