Skip to content

Commit ab2d837

Browse files
dol-senthesamesam
authored andcommitted
revdep_rebuild: black cleanup
Signed-off-by: Brian Dolbec <brian.dolbec@gmail.com> Part-of: #60 Signed-off-by: Sam James <sam@gentoo.org>
1 parent 2358ac3 commit ab2d837

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

pym/gentoolkit/revdep_rebuild/analyse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def search(self, scanned_files=None):
250250
"\tFile %s ignored as it is masked" % filename
251251
)
252252
continue
253-
if l.startswith('/') and os.path.isfile(l):
253+
if l.startswith("/") and os.path.isfile(l):
254254
self.logger.debug(
255255
"\tLibrary %s is a full path and it exists" % l
256256
)

pym/gentoolkit/revdep_rebuild/rebuild.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/usr/bin/python
22

33

4-
""" Rebuild module
4+
"""Rebuild module
55
66
Main program, cli parsing and api program control and operation
77
88
Author: Sławomir Lis <lis.slawek@gmail.com>
9-
revdep-rebuild original author: Stanislav Brabec
10-
revdep-rebuild original rewrite Author: Michael A. Smith
9+
revdep-rebuild original author: Stanislav Brabec
10+
revdep-rebuild original rewrite Author: Michael A. Smith
1111
Current Maintainer: Paul Varner <fuzzyray@gentoo.org>
1212
Creation date: 2010/10/17
1313
License: BSD
@@ -31,7 +31,6 @@
3131
from .stuff import filter_masked
3232
from . import __version__
3333

34-
3534
APP_NAME = sys.argv[0]
3635
VERSION = __version__
3736

pym/gentoolkit/revdep_rebuild/stuff.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
"""Utilities submodule"""
44

5-
65
import subprocess
76

87
import portage

0 commit comments

Comments
 (0)