fix type hint and typo

pull/543/head
mss 2022-09-11 16:02:42 +02:00 zatwierdzone przez Holger Müller
rodzic 37007a650d
commit 06ffd48de0
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -19,7 +19,7 @@
import logging
from collections import OrderedDict
from time import sleep
from typing import List, Iterator
from typing import List, Iterator, Set
from PyQt5 import QtGui
@ -156,7 +156,7 @@ class VNA:
def _get_running_frequencies(self):
"""
If possible, read frequencies already runnung
If possible, read frequencies already running
if not return default values
Overwrite in specific HW
"""
@ -165,7 +165,7 @@ class VNA:
def connected(self) -> bool:
return self.serial.is_open
def getFeatures(self) -> List[str]:
def getFeatures(self) -> Set[str]:
return self.features
def getCalibration(self) -> str: