From 97659b5493ec3192952e51cad976cfda372621b7 Mon Sep 17 00:00:00 2001 From: jeremystretch Date: Tue, 27 Sep 2022 11:12:21 -0400 Subject: [PATCH] #10465: PEP8 fix --- netbox/dcim/tables/devicetypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/tables/devicetypes.py b/netbox/dcim/tables/devicetypes.py index e9e936b3a..ec71245f7 100644 --- a/netbox/dcim/tables/devicetypes.py +++ b/netbox/dcim/tables/devicetypes.py @@ -86,7 +86,7 @@ class DeviceTypeTable(NetBoxTable): url_name='dcim:devicetype_list' ) u_height = columns.TemplateColumn( - template_code='{{ value|floatformat }}' + template_code='{{ value|floatformat }}' ) class Meta(NetBoxTable.Meta):