Superfluous type annotation

pull/14/head
Ewald de Wit 2022-09-12 13:21:47 +02:00
rodzic ff11f8da3a
commit 1322de2478
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -60,7 +60,7 @@ class Analyzer:
self.rate = rate self.rate = rate
self.fmin = min(f0, f1) self.fmin = min(f0, f1)
self.fmax = max(f0, f1) self.fmax = max(f0, f1)
self.time: float = 0 self.time = 0
# Cache the methods in a way that allows garbage collection of self. # Cache the methods in a way that allows garbage collection of self.
for meth in ['X', 'Y', 'H', 'H2', 'h', 'h_inv', 'spectrum']: for meth in ['X', 'Y', 'H', 'H2', 'h', 'h_inv', 'spectrum']: