Source code for irradiapy.lammps.commands.command

"""This module contains the base class for LAMMPS commands."""

from dataclasses import dataclass


[docs] @dataclass(kw_only=True) class Command: """Base class for LAMMPS commands classes and for typed annotations."""
[docs] def command(self) -> str: """Generate the LAMMPS command.""" return ""