Fix some checks
This commit is contained in:
parent
c5e43c1558
commit
9ef956ae5e
@ -15,7 +15,8 @@ disable=no-self-use,
|
||||
too-many-ancestors,
|
||||
too-few-public-methods,
|
||||
too-many-public-methods,
|
||||
cyclic-import
|
||||
cyclic-import,
|
||||
bad-option-value
|
||||
|
||||
[BASIC]
|
||||
module-rgx=[a-z_]*$
|
||||
|
@ -22,9 +22,12 @@
|
||||
from qutebrowser.app import QuteBrowser
|
||||
import sys
|
||||
|
||||
|
||||
def main():
|
||||
"""Main entry point for qutebrowser."""
|
||||
app = QuteBrowser()
|
||||
return app.exec_()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(main())
|
||||
|
@ -17,7 +17,6 @@
|
||||
|
||||
"""Other utilities which don't fit anywhere else."""
|
||||
|
||||
import os.path
|
||||
from functools import reduce
|
||||
from pkg_resources import resource_string
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user