Remove unnecessary config class
All checks were successful
Unit Testing / test (3.12) (push) Successful in 28s
Unit Testing / test (3.10) (push) Successful in 30s
Unit Testing / test (3.9) (push) Successful in 27s
Unit Testing / test (3.8) (push) Successful in 28s

This commit is contained in:
2026-02-26 16:44:53 +01:00
parent a22c23658f
commit dc7dd2a6f2
2 changed files with 1 additions and 8 deletions

View File

@@ -7,16 +7,13 @@ Author: Jochen Stahn (algorithms, python draft),
import os
import logging
from eos.options import LSConfig
from eos.command_line import commandLineArgs
def main():
logging.getLogger().setLevel(logging.CRITICAL)
clas = commandLineArgs([LSConfig], 'eosls', extra_args=[
clas = commandLineArgs([], 'eosls', extra_args=[
dict(dest='path', nargs='*', default=['.'], help='paths to list file in')])
config = LSConfig.from_args(clas)
from glob import glob
import tabulate
from eos.file_reader import AmorHeader

View File

@@ -750,7 +750,3 @@ class E2HConfig:
reader: ReaderConfig
experiment: ExperimentConfig
reduction: E2HReductionConfig
@dataclass
class LSConfig(ArgParsable):
...