Fix some checks

This commit is contained in:
Florian Bruhin 2014-04-29 08:38:01 +02:00
parent c5e43c1558
commit 9ef956ae5e
3 changed files with 5 additions and 2 deletions

View File

@ -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_]*$

View File

@ -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())

View File

@ -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