Skip to content

Commit a9e8c3e

Browse files
georgevigeletteebrahimebrahim
authored andcommitted
updated to not use an alias
1 parent d2e60a8 commit a9e8c3e

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
@@ -427,7 +427,7 @@ def __exit__(self, exc_type, exc_value, traceback):
427427

428428
@staticmethod
429429
def get_sdk_version() -> str:
430-
version = m.__version__
430+
version = openlifu.__version__
431431
# Match the version pattern X.Y.Z
432432
match = re.match(r'\d+\.\d+\.\d+', version)
433433
return match.group(0) if match else version

0 commit comments

Comments
 (0)