From d0a8adc6fd501c29e0527db0b28781a2bd41c698 Mon Sep 17 00:00:00 2001 From: connor rigby Date: Fri, 9 Feb 2018 09:40:10 -0800 Subject: [PATCH] Fix weird syntax error --- lib/farmbot/firmware/firmware.ex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/farmbot/firmware/firmware.ex b/lib/farmbot/firmware/firmware.ex index e7261b6a..7e0a7af7 100644 --- a/lib/farmbot/firmware/firmware.ex +++ b/lib/farmbot/firmware/firmware.ex @@ -118,7 +118,7 @@ defmodule Farmbot.Firmware do defmodule State do @moduledoc false - defstruct + defstruct [ handler: nil, handler_mod: nil, idle: false, @@ -131,6 +131,7 @@ defmodule Farmbot.Firmware do current: nil, timeout_ms: 150_000, queue: :queue.new() + ] end def init([]) do