Skip to content

Commit 21d3764

Browse files
updated to not use an alias
1 parent 2574f25 commit 21d3764

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/openlifu/io/LIFUInterface.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import numpy as np
1010
import pandas as pd
1111

12-
import openlifu as m
12+
import openlifu
1313
from openlifu.io.LIFUHVController import HVController
1414
from openlifu.io.LIFUSignal import LIFUSignal
1515
from openlifu.io.LIFUTXDevice import TriggerModeOpts, TxDevice
@@ -400,7 +400,7 @@ def __exit__(self, exc_type, exc_value, traceback):
400400

401401
@staticmethod
402402
def get_sdk_version() -> str:
403-
version = m.__version__
403+
version = openlifu.__version__
404404
# Match the version pattern X.Y.Z
405405
match = re.match(r'\d+\.\d+\.\d+', version)
406406
return match.group(0) if match else version

0 commit comments

Comments
 (0)