mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-04-30 21:51:40 +01:00
17 lines
347 B
Python
17 lines
347 B
Python
# See utils/checkpackagelib/readme.txt before editing this file.
|
|
|
|
|
|
class _CheckFunction(object):
|
|
def __init__(self, filename, url_to_manual):
|
|
self.filename = filename
|
|
self.url_to_manual = url_to_manual
|
|
|
|
def before(self):
|
|
pass
|
|
|
|
def check_line(self, lineno, text):
|
|
pass
|
|
|
|
def after(self):
|
|
pass
|