Skip to content

Commit

Permalink
tardyp's comment: tags = types.List(of=types.String()) (Remove NoneOK)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Delannoy committed Nov 14, 2014
1 parent fb1b948 commit f492a74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/data/builders.py
Expand Up @@ -80,7 +80,7 @@ class EntityType(types.Entity):
builderid = types.Integer()
name = types.Identifier(20)
description = types.NoneOk(types.String())
tags = types.NoneOk(types.List(of=types.String()))
tags = types.List(of=types.String())
entityType = EntityType(name)

def __init__(self, master):
Expand Down

0 comments on commit f492a74

Please sign in to comment.