Skip to content

Commit

Permalink
pydocstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
marcin-usielski committed Feb 6, 2024
1 parent 27916d5 commit b0838d8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion moler/cmd/unix/ps.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
# result knowledge



class Ps(GenericUnixCommand):
"""Unix command ps."""

Expand Down
8 changes: 4 additions & 4 deletions moler/device/textualdevice.py
Original file line number Diff line number Diff line change
Expand Up @@ -827,10 +827,10 @@ def _get_observer_in_state(self, observer_name, observer_type, for_state, **kwar

exc = DeviceFailure(
device=self.__class__.__name__,
message=f"Failed to create {observer_type}-object for '{observer_name}' {observer_type}."\
f" '{observer_name}' {observer_type} is unknown for state '{for_state}' of device "\
f"'{self.__class__.__name__}'. Available names: {available_observer_names}."
)
message=f"Failed to create {observer_type}-object for '{observer_name}' {observer_type}."
f" '{observer_name}' {observer_type} is unknown for state '{for_state}' of device "
f"'{self.__class__.__name__}'. Available names: {available_observer_names}."
)
self._log(logging.ERROR, exc)
raise exc

Expand Down
1 change: 1 addition & 0 deletions moler/io/raw/subprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import abc
import six


@six.add_metaclass(abc.ABCMeta)
class Subprocess:

Expand Down

0 comments on commit b0838d8

Please sign in to comment.