Fixed typo segements

pull/264/head
Holger Müller 2020-07-18 15:43:39 +02:00 zatwierdzone przez GitHub
rodzic 5f4fa53223
commit 66b07690ff
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -56,11 +56,11 @@ class WorkerSignals(QtCore.QObject):
class Sweep():
def __init__(self, start: int = 3600000, end: int = 30000000,
points: int = 101, segements: int = 1):
points: int = 101, segments: int = 1):
self.start = start
self.end = end
self.points = points
self.segments = segements
self.segments = segments
self.span = self.end - self.start
self.step = self.stepsize()
self.check()