Two minor code quality issues in pyaptamer/utils/_pseaac_utils.py:
-
import warnings inside function body: The import is placed inside clean_protein_seq() rather than at the module top level. PEP 8 recommends top-level imports.
-
AMINO_ACIDS missing from all: The constant is imported by other modules but is not listed in all.
Two minor code quality issues in pyaptamer/utils/_pseaac_utils.py:
import warnings inside function body: The import is placed inside clean_protein_seq() rather than at the module top level. PEP 8 recommends top-level imports.
AMINO_ACIDS missing from all: The constant is imported by other modules but is not listed in all.