Skip to content

Commit

Permalink
fix type in naming function
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnberger committed Feb 15, 2016
1 parent 5e6a722 commit 8d22416
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sketchup_importer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def group_safe_name(name):
global magic_num
magic_num += 9
return "{}__{}".format(name, magic_num)
return nuame
return name


def inherent_default_mat(mat, default_material):
Expand Down
9 changes: 9 additions & 0 deletions slapi/color.pxd
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# -*- coding: utf-8 -*-
from slapi.model.defs cimport *

cdef extern from "SketchUpAPI/color.h":
ctypedef struct SUColor:
SUByte red,
SUByte green,
SUByte blue,
SUByte alpha
Empty file added slapi/model/__init__.py
Empty file.

0 comments on commit 8d22416

Please sign in to comment.