diff options
Diffstat (limited to 'spec/src')
-rw-r--r-- | spec/src/Thermoprint/API.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/src/Thermoprint/API.hs b/spec/src/Thermoprint/API.hs index da16d32..6c020fc 100644 --- a/spec/src/Thermoprint/API.hs +++ b/spec/src/Thermoprint/API.hs | |||
@@ -57,10 +57,10 @@ data JobStatus = Queued PrinterId | |||
57 | | Printing PrinterId | 57 | | Printing PrinterId |
58 | | Done | 58 | | Done |
59 | | Failed PrintingError | 59 | | Failed PrintingError |
60 | deriving (Generic, Show, Read, FromJSON, ToJSON) | 60 | deriving (Generic, Show, FromJSON, ToJSON) |
61 | 61 | ||
62 | data PrintingError = UnknownError | 62 | data PrintingError = UnknownError |
63 | deriving (Typeable, Generic, NFData, Show, ToJSON, Exception) | 63 | deriving (Typeable, Generic, NFData, Show, FromJSON, ToJSON, Exception) |
64 | 64 | ||
65 | type DraftTitle = Text | 65 | type DraftTitle = Text |
66 | 66 | ||