From f30aece04a2abea81f4b2d95c84d54daee761738 Mon Sep 17 00:00:00 2001 From: Kostas Vilkelis <kostasvilkelis@gmail.com> Date: Tue, 7 May 2024 12:25:07 +0200 Subject: [PATCH] chane to empty tuple --- pymf/tb/tb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymf/tb/tb.py b/pymf/tb/tb.py index ed0a503..52678b8 100644 --- a/pymf/tb/tb.py +++ b/pymf/tb/tb.py @@ -1,6 +1,6 @@ import numpy as np -tb_type = dict[tuple[None] | tuple[int, ...], np.ndarray] +tb_type = dict[tuple[()] | tuple[int, ...], np.ndarray] def add_tb(tb1: tb_type, tb2: tb_type) -> tb_type: -- GitLab