Remove Type suffix in auto-generated namespaces, thanks @elemoine
This commit is contained in:
@@ -30,7 +30,7 @@ class Type(object):
|
||||
return ''.join(lines)
|
||||
|
||||
def provide(self):
|
||||
return 'goog.provide(\'%sType\');\n' % (self.name,)
|
||||
return 'goog.provide(\'%s\');\n' % (self.name,)
|
||||
|
||||
def typedef(self):
|
||||
lines = []
|
||||
|
||||
Reference in New Issue
Block a user