- refactored hendi_ctrl

- fixed hend_heater
- added workaround for typedDict and Python < v3.8
This commit is contained in:
jens
2021-10-19 06:32:45 +01:00
parent 7c6004807d
commit bd63f2648c
4 changed files with 67 additions and 5 deletions
Regular → Executable
+5 -1
View File
@@ -1,8 +1,12 @@
from typing import TypedDict
import numpy as np
import scipy.io
import os
import sys
import time
if sys.version_info[0] == 3 and sys.version_info[1] >= 8:
from typing import TypedDict
else:
from typing_extensions import TypedDict
class Entry(TypedDict):