mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-27 10:58:37 -06:00
fix(lint) add missing blank lines
This commit is contained in:
parent
bd40d11321
commit
cc9fc693ff
@ -31,6 +31,7 @@ def linkify_phone(value):
|
|||||||
return None
|
return None
|
||||||
return f"tel:{value.replace(' ', '')}"
|
return f"tel:{value.replace(' ', '')}"
|
||||||
|
|
||||||
|
|
||||||
def linkify_url(value):
|
def linkify_url(value):
|
||||||
"""
|
"""
|
||||||
Render a URL as a hyperlink.
|
Render a URL as a hyperlink.
|
||||||
@ -39,6 +40,7 @@ def linkify_url(value):
|
|||||||
return None
|
return None
|
||||||
return value
|
return value
|
||||||
|
|
||||||
|
|
||||||
def register_table_column(column, name, *tables):
|
def register_table_column(column, name, *tables):
|
||||||
"""
|
"""
|
||||||
Register a custom column for use on one or more tables.
|
Register a custom column for use on one or more tables.
|
||||||
|
Loading…
Reference in New Issue
Block a user