mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 14:17:19 +00:00
[ISSUE-3/4] Adds test container and tooling (#8)
* Adding black, isort, and flake8 to pytest * Applying black, flake8, and isort to codebase
This commit is contained in:
@@ -83,12 +83,15 @@ __all__ = ["is_rarfile", "RarInfo", "RarFile", "RarExtFile"]
|
||||
## Imports and compat - support both Python 2.x and 3.x
|
||||
##
|
||||
|
||||
import sys, os, struct, errno
|
||||
from struct import pack, unpack
|
||||
import errno
|
||||
import os
|
||||
import struct
|
||||
import sys
|
||||
from binascii import crc32
|
||||
from tempfile import mkstemp
|
||||
from subprocess import Popen, PIPE, STDOUT
|
||||
from datetime import datetime
|
||||
from struct import pack, unpack
|
||||
from subprocess import PIPE, STDOUT, Popen
|
||||
from tempfile import mkstemp
|
||||
|
||||
# only needed for encryped headers
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user