Remove space
This commit is contained in:
parent
2019cd5b6c
commit
520035b842
|
@ -16,7 +16,7 @@ module.exports = class Robot
|
||||||
opts ?= {}
|
opts ?= {}
|
||||||
@_connections = {}
|
@_connections = {}
|
||||||
@_devices = {}
|
@_devices = {}
|
||||||
@name = opts.name or @constructor.randomName()
|
@name = opts.name or @constructor.randomName()
|
||||||
@connections = initConnections(opts.connection or opts.connections or {})
|
@connections = initConnections(opts.connection or opts.connections or {})
|
||||||
@devices = initDevices(opts.device or opts.devices or {})
|
@devices = initDevices(opts.device or opts.devices or {})
|
||||||
@work = opts.work or -> (console.log "No work yet")
|
@work = opts.work or -> (console.log "No work yet")
|
||||||
|
|
Loading…
Reference in New Issue