From 6f51c860af5f93562c361ff1cb522b42fb06dddf Mon Sep 17 00:00:00 2001 From: Simon Oliver Tveit Date: Mon, 4 Sep 2023 09:56:43 +0200 Subject: [PATCH] fixup! Use Sequence typing instead of Tuple specifically --- python/nav/portadmin/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/nav/portadmin/handlers.py b/python/nav/portadmin/handlers.py index bec4ae7ebe..f56fbfbedb 100644 --- a/python/nav/portadmin/handlers.py +++ b/python/nav/portadmin/handlers.py @@ -290,7 +290,7 @@ def is_configurable(self) -> bool: return False return True - def get_poe_state_options(self) -> Sequence[PoeState, ...]: + def get_poe_state_options(self) -> Sequence[PoeState]: """Returns the available options for enabling/disabling PoE on this netbox""" raise NotImplementedError