Skip to content

Commit 75a9499

Browse files
rename adapter
1 parent ff7ae2c commit 75a9499

36 files changed

Lines changed: 28 additions & 25 deletions

docs/parser_requirements/unchained_labs_lunatic/images/image1.png renamed to docs/parser_requirements/unchained_labs_lunatic_stunner/images/image1.png

File renamed without changes.

docs/parser_requirements/unchained_labs_lunatic/images/image2.png renamed to docs/parser_requirements/unchained_labs_lunatic_stunner/images/image2.png

File renamed without changes.

docs/parser_requirements/unchained_labs_lunatic/unchained_labs_lunatic_req.html renamed to docs/parser_requirements/unchained_labs_lunatic_stunner/unchained_labs_lunatic_req.html

File renamed without changes.

src/allotropy/calcdocs/unchained_labs_lunatic/extractor.py renamed to src/allotropy/calcdocs/unchained_labs_lunatic_stunner/extractor.py

File renamed without changes.

src/allotropy/calcdocs/unchained_labs_lunatic/views.py renamed to src/allotropy/calcdocs/unchained_labs_lunatic_stunner/views.py

File renamed without changes.

src/allotropy/parser_factory.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@
119119
ThermoFisherVisionliteParser,
120120
)
121121
from allotropy.parsers.thermo_skanit.thermo_skanit_parser import ThermoSkanItParser
122-
from allotropy.parsers.unchained_labs_lunatic.unchained_labs_lunatic_parser import (
123-
UnchainedLabsLunaticParser,
122+
from allotropy.parsers.unchained_labs_lunatic_stunner.unchained_labs_lunatic_stunner_parser import (
123+
UnchainedLabsLunaticStunnerParser,
124124
)
125125
from allotropy.parsers.utils.timestamp_parser import TimestampParser
126126
from allotropy.parsers.vendor_parser import VendorParser
@@ -176,7 +176,7 @@ class Vendor(Enum):
176176
THERMO_FISHER_QUBIT_FLEX = "THERMO_FISHER_QUBIT_FLEX"
177177
THERMO_FISHER_VISIONLITE = "THERMO_FISHER_VISIONLITE"
178178
THERMO_SKANIT = "THERMO_SKANIT"
179-
UNCHAINED_LABS_LUNATIC = "UNCHAINED_LABS_LUNATIC"
179+
UNCHAINED_LABS_LUNATIC = "UNCHAINED_LABS_LUNATIC_STUNNER"
180180

181181
@property
182182
def display_name(self) -> str:
@@ -273,7 +273,7 @@ def get_parser(
273273
Vendor.THERMO_FISHER_QUBIT_FLEX: ThermoFisherQubitFlexParser,
274274
Vendor.THERMO_FISHER_VISIONLITE: ThermoFisherVisionliteParser,
275275
Vendor.THERMO_SKANIT: ThermoSkanItParser,
276-
Vendor.UNCHAINED_LABS_LUNATIC: UnchainedLabsLunaticParser,
276+
Vendor.UNCHAINED_LABS_LUNATIC: UnchainedLabsLunaticStunnerParser,
277277
}
278278

279279

src/allotropy/parsers/unchained_labs_lunatic/__init__.py renamed to src/allotropy/parsers/unchained_labs_lunatic_stunner/__init__.py

File renamed without changes.

src/allotropy/parsers/unchained_labs_lunatic/constants.py renamed to src/allotropy/parsers/unchained_labs_lunatic_stunner/constants.py

File renamed without changes.

src/allotropy/parsers/unchained_labs_lunatic/unchained_labs_lunatic_calcdocs.py renamed to src/allotropy/parsers/unchained_labs_lunatic_stunner/unchained_labs_lunatic_calcdocs.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@
77
CalculatedDataConfig,
88
MeasurementConfig,
99
)
10-
from allotropy.calcdocs.unchained_labs_lunatic.extractor import LunaticExtractor
11-
from allotropy.calcdocs.unchained_labs_lunatic.views import DetectionTypeView, UuidView
10+
from allotropy.calcdocs.unchained_labs_lunatic_stunner.extractor import LunaticExtractor
11+
from allotropy.calcdocs.unchained_labs_lunatic_stunner.views import (
12+
DetectionTypeView,
13+
UuidView,
14+
)
1215
from allotropy.parsers.utils.calculated_data_documents.definition import (
1316
CalculatedDocument,
1417
)

src/allotropy/parsers/unchained_labs_lunatic/unchained_labs_lunatic_reader.py renamed to src/allotropy/parsers/unchained_labs_lunatic_stunner/unchained_labs_lunatic_reader.py

File renamed without changes.

0 commit comments

Comments
 (0)