fix(lint) add missing blank lines

This commit is contained in:
Antoine Keranflec'h 2025-03-09 22:04:53 +01:00
parent bd40d11321
commit cc9fc693ff

View File

@ -31,6 +31,7 @@ def linkify_phone(value):
return None
return f"tel:{value.replace(' ', '')}"
def linkify_url(value):
"""
Render a URL as a hyperlink.
@ -39,6 +40,7 @@ def linkify_url(value):
return None
return value
def register_table_column(column, name, *tables):
"""
Register a custom column for use on one or more tables.