Skip to content

Commit

Permalink
reintroduce exception.py (#1179)
Browse files Browse the repository at this point in the history
  • Loading branch information
lbbrhzn authored May 17, 2024
1 parent 88a1926 commit e4c72c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions custom_components/ocpp/exception.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
""" This file is imported by home assistant, and can be used to define custom exceptions."""
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build
doctests = True
# To work with Black
max-line-length = 88
# D210 No whitespaces allowed surrounding docstring text
# E501: line too long
# W503: Line break occurred before a binary operator
# E203: Whitespace before ':'
# D202 No blank lines allowed after function docstring
# W504 line break after binary operator
ignore =
D210,
E501,
W503,
E203,
Expand Down

0 comments on commit e4c72c8

Please sign in to comment.