File: __init__.py

package info (click to toggle)
python-spur 0.3.23-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: python: 1,188; makefile: 39
file content (10 lines) | stat: -rw-r--r-- 346 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
from .local import LocalShell
from .ssh import SshShell
from .results import RunProcessError
from .errors import NoSuchCommandError, CommandInitializationError, CouldNotChangeDirectoryError

__all__ = [
    "LocalShell", "SshShell",
    "RunProcessError", "NoSuchCommandError", "CommandInitializationError",
    "CouldNotChangeDirectoryError",
]