mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-21 19:30:03 +02:00
9 lines
176 B
Python
9 lines
176 B
Python
from .detector import Detector
|
|
|
|
def view(name):
|
|
names = find(name)
|
|
for n in names:
|
|
print(n)
|
|
|
|
def find(name):
|
|
return [n for n in dir(Detector) if name in n] |