Skip to content

Commit

Permalink
brother_ql.exceptions: easier notation and line spacings
Browse files Browse the repository at this point in the history
  • Loading branch information
pklaus committed Sep 14, 2018
1 parent 35a53b9 commit f7e34a3
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions brother_ql/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
class BrotherQLError(Exception): pass
class BrotherQLUnsupportedCmd(BrotherQLError): pass
class BrotherQLUnknownModel(BrotherQLError): pass
class BrotherQLRasterError(BrotherQLError): pass

class BrotherQLError(Exception):
pass

class BrotherQLUnsupportedCmd(BrotherQLError):
pass

class BrotherQLUnknownModel(BrotherQLError):
pass

class BrotherQLRasterError(BrotherQLError):
pass

0 comments on commit f7e34a3

Please sign in to comment.