Skip to content

Commit e605f3b

Browse files
committed
Pacify black.
1 parent cf61707 commit e605f3b

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

eliot/_output.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
)
2525
from ._validation import ValidationError
2626

27-
2827
# Action type for log messages due to a (hopefully temporarily) broken
2928
# destination.
3029
DESTINATION_FAILURE = "eliot:destination_failure"

eliot/journald.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@
1212
from ._action import ACTION_TYPE_FIELD, ACTION_STATUS_FIELD, FAILED_STATUS
1313

1414
_ffi = FFI()
15-
_ffi.cdef(
16-
"""
15+
_ffi.cdef("""
1716
int sd_journal_send(const char *format, ...);
18-
"""
19-
)
17+
""")
2018
try:
2119
try:
2220
_journald = _ffi.dlopen("libsystemd.so.0")

eliot/prettyprint.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
)
2020
from ._action import ACTION_TYPE_FIELD, ACTION_STATUS_FIELD
2121

22-
2322
# Ensure binary stdin, since we expect specifically UTF-8 encoded
2423
# messages, not platform-encoding messages.
2524
stdin = stdin.buffer

0 commit comments

Comments
 (0)