cnpem-emi / pydrs

Python library for interfacing with current power supplies and related peripherals
MIT License
0 stars 1 forks source link

Fix verbose constant list names #34

Closed gfrn closed 2 years ago

gfrn commented 2 years ago

Example:

from .consts.fac_const_list import (
    list_fac_2p4s_dcdc_hard_interlocks
)

to:

from .consts.fac import (
    hard_interlocks
)

That being said, consider importing the class as a whole, instead of individual constants, given that the name is sufficiently descriptive and all constants end up being imported anyway.