add black
This commit is contained in:
parent
68eebc28a6
commit
7953a9ca45
9
.travis.yml
Normal file
9
.travis.yml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
language: python
|
||||||
|
python:
|
||||||
|
- "3.6"
|
||||||
|
- "3.7"
|
||||||
|
- "3.8"
|
||||||
|
install:
|
||||||
|
- pip install black
|
||||||
|
script:
|
||||||
|
- black --check .
|
@ -141,5 +141,7 @@ class Index:
|
|||||||
text = f.read()
|
text = f.read()
|
||||||
|
|
||||||
self.ignore = list(
|
self.ignore = list(
|
||||||
filter(lambda x: x and x[0] != "#" and len(x.strip()) > 0, text.splitlines())
|
filter(
|
||||||
|
lambda x: x and x[0] != "#" and len(x.strip()) > 0, text.splitlines()
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
@ -69,9 +69,14 @@ class Main:
|
|||||||
# )
|
# )
|
||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-q", "--quiet", action="store_true", help="quiet, don't show progress/information"
|
"-q",
|
||||||
|
"--quiet",
|
||||||
|
action="store_true",
|
||||||
|
help="quiet, don't show progress/information",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-v", "--verbose", action="store_true", help="verbose output"
|
||||||
)
|
)
|
||||||
parser.add_argument("-v", "--verbose", action="store_true", help="verbose output")
|
|
||||||
|
|
||||||
self.args = parser.parse_args()
|
self.args = parser.parse_args()
|
||||||
self.verbose = self.args.verbose
|
self.verbose = self.args.verbose
|
||||||
@ -93,7 +98,9 @@ class Main:
|
|||||||
for path in self.args.PATH:
|
for path in self.args.PATH:
|
||||||
todo_queue.put(path)
|
todo_queue.put(path)
|
||||||
|
|
||||||
workers = [IndexThread(idx, self.args, self.res_queue, todo_queue) for idx in range(5)]
|
workers = [
|
||||||
|
IndexThread(idx, self.args, self.res_queue, todo_queue) for idx in range(5)
|
||||||
|
]
|
||||||
|
|
||||||
res_worker = threading.Thread(target=self._res_worker)
|
res_worker = threading.Thread(target=self._res_worker)
|
||||||
res_worker.daemon = True
|
res_worker.daemon = True
|
||||||
@ -114,7 +121,10 @@ class Main:
|
|||||||
print("chkbit detected bitrot in these files:", file=sys.stderr)
|
print("chkbit detected bitrot in these files:", file=sys.stderr)
|
||||||
for err in self.bitrot_list:
|
for err in self.bitrot_list:
|
||||||
print(err, file=sys.stderr)
|
print(err, file=sys.stderr)
|
||||||
print(f"error: detected {len(self.bitrot_list)} file(s) with bitrot!", file=sys.stderr)
|
print(
|
||||||
|
f"error: detected {len(self.bitrot_list)} file(s) with bitrot!",
|
||||||
|
file=sys.stderr,
|
||||||
|
)
|
||||||
if self.err_list:
|
if self.err_list:
|
||||||
print("chkbit ran into errors:", file=sys.stderr)
|
print("chkbit ran into errors:", file=sys.stderr)
|
||||||
for err in self.err_list:
|
for err in self.err_list:
|
||||||
|
Reference in New Issue
Block a user