Skip to content

Commit fa46312

Browse files
committed
Format source code
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 31b3a43 commit fa46312

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

src/extractcode/api.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
# limitations under the License.
1919
#
2020

21-
2221
"""
2322
Note: this API is unstable and still evolving.
2423
"""

src/extractcode/archive.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
from extractcode.uncompress import uncompress_gzip
4646
from extractcode.uncompress import uncompress_bzip2
4747

48-
4948
logger = logging.getLogger(__name__)
5049
TRACE = False
5150
TRACE_DEEP = False

src/extractcode/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def print_version(ctx, param, value):
5353

5454
notice_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'NOTICE')
5555
notice_text = open(notice_path).read()
56-
56+
5757

5858
def print_about(ctx, param, value):
5959
"""

tests/extractcode/test_libarchive2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
from extractcode_assert_utils import check_files
2525
from extractcode_assert_utils import BaseArchiveTestCase
2626

27-
2827
"""
2928
Minimal smoke tests for libarchive2.
3029
"""
3130

31+
3232
class TestExtractorTest(BaseArchiveTestCase):
3333

3434
def test_libarchive_extract_can_extract_to_relative_paths(self):

0 commit comments

Comments
 (0)