Skip to content

Commit 42111f1

Browse files
committed
pep8
1 parent c5ad125 commit 42111f1

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

setup.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[flake8]
2+
exclude = squashfs-root
3+
14
[coverage:run]
25
source = beeref
36

tools/build_appimage.py

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111

1212
import argparse
13-
import glob
1413
import json
1514
import logging
1615
import os

tools/find_linux_libs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ def iter_lsofoutput(output):
108108

109109

110110
for lib in iter_lsofoutput(output):
111-
links = what_links_to(path)
111+
links = what_links_to(lib)
112112
if len(links) == 1:
113113
lib = links[0]
114114
else:
115-
logger.warning(f'Double check: {path} {links}')
115+
logger.warning(f'Double check: {lib} {links}')
116116
lib = links[0]
117117
if lib in known_libs:
118118
logger.debug(f'Found known lib: {lib}')

0 commit comments

Comments
 (0)