From d7de4f1e77cf008cf3cd786415da3d7ab1828c9f Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 22 Apr 2019 11:27:50 +0100 Subject: [PATCH] LFSR2.pyi, type is set not frozenset, exponents returns list --- TLB/src/LFSR2.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TLB/src/LFSR2.pyi b/TLB/src/LFSR2.pyi index c37adc44..894ce23f 100644 --- a/TLB/src/LFSR2.pyi +++ b/TLB/src/LFSR2.pyi @@ -6,11 +6,11 @@ from typing_extensions import final @final -class LFSRPolynomial(frozenset): +class LFSRPolynomial(set): def __init__(self, exponents: Iterable[int] = ()): def elements() -> Iterable[int]: ... @property - def exponents(self) -> frozenset[int]: ... + def exponents(self) -> list[int]: ... def __str__(self) -> str: ... def __repr__(self) -> str: ... -- 2.30.2