From cc9fc693ffcc9eabd3c476c79f85d1091b36f608 Mon Sep 17 00:00:00 2001 From: Antoine Keranflec'h Date: Sun, 9 Mar 2025 22:04:53 +0100 Subject: [PATCH] fix(lint) add missing blank lines --- netbox/utilities/tables.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netbox/utilities/tables.py b/netbox/utilities/tables.py index 6fbdff038..0c067582d 100644 --- a/netbox/utilities/tables.py +++ b/netbox/utilities/tables.py @@ -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.