Remove space

This commit is contained in:
deadprogram 2013-10-20 13:38:22 -07:00
parent 2019cd5b6c
commit 520035b842
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ module.exports = class Robot
opts ?= {}
@_connections = {}
@_devices = {}
@name = opts.name or @constructor.randomName()
@name = opts.name or @constructor.randomName()
@connections = initConnections(opts.connection or opts.connections or {})
@devices = initDevices(opts.device or opts.devices or {})
@work = opts.work or -> (console.log "No work yet")