Skip to content

Commit e4c72c8

Browse files
authored
reintroduce exception.py (#1179)
1 parent 88a1926 commit e4c72c8

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

custom_components/ocpp/exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
""" This file is imported by home assistant, and can be used to define custom exceptions."""

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build
33
doctests = True
44
# To work with Black
55
max-line-length = 88
6+
# D210 No whitespaces allowed surrounding docstring text
67
# E501: line too long
78
# W503: Line break occurred before a binary operator
89
# E203: Whitespace before ':'
910
# D202 No blank lines allowed after function docstring
1011
# W504 line break after binary operator
1112
ignore =
13+
D210,
1214
E501,
1315
W503,
1416
E203,

0 commit comments

Comments
 (0)