- refactored hendi_ctrl
- fixed hend_heater - added workaround for typedDict and Python < v3.8
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user