Skip to content

Commit 895b695

Browse files
committed
More reformatting.
1 parent 118f121 commit 895b695

17 files changed

+2
-15
lines changed

eliot/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Eliot: Logging for Complex & Distributed Systems.
33
"""
4+
45
from warnings import warn
56

67
# Expose the public API:

eliot/_errors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Error-handling utility code.
33
"""
44

5-
65
from inspect import getmro
76

87

eliot/_generators.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Support for maintaining an action context across generator suspension.
33
"""
44

5-
65
from sys import exc_info
76
from functools import wraps
87
from contextlib import contextmanager

eliot/_traceback.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
as well as common utilities for handling exception logging.
44
"""
55

6-
76
import traceback
87
import sys
98

eliot/serializers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Standardized serialization code.
33
"""
44

5-
65
from hashlib import md5
76

87
_TIME_FORMAT = "%Y-%m-%dT%H:%M:%S.%fZ"

eliot/tai64n.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
@see: U{http://cr.yp.to/libtai/tai64.html}.
77
"""
88

9-
109
import struct
1110
from binascii import b2a_hex, a2b_hex
1211

eliot/tests/test_api.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Tests for the public API exposed by L{eliot}.
33
"""
44

5-
65
from unittest import TestCase
76

87
from .._output import Logger

eliot/tests/test_generators.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Tests for L{eliot._generators}.
33
"""
44

5-
65
from pprint import pformat
76
from unittest import TestCase
87

eliot/tests/test_journald.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Tests for L{eliot.journald}.
33
"""
4+
45
from os import getpid, strerror
56
from unittest import skipUnless, TestCase
67
from subprocess import check_output, CalledProcessError, STDOUT

eliot/tests/test_message.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Tests for L{eliot._message}.
33
"""
44

5-
65
from unittest import TestCase
76
from uuid import UUID
87
import time

0 commit comments

Comments
 (0)