summaryrefslogtreecommitdiff
path: root/example.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-07-24 21:33:05 +0300
committerLars Wirzenius <liw@liw.fi>2016-07-24 21:33:05 +0300
commit2ab9dfd554d2b49bc7df4711c5fb633dd3a92ccf (patch)
tree46a5a0e28a2949eb4348114c5169ec58633700c1 /example.py
parent3ade692af1daf4b60af748f7ed35933ec36d5575 (diff)
downloadcliapp-2ab9dfd554d2b49bc7df4711c5fb633dd3a92ccf.tar.gz
Silence pylint warnings
Disable the ones that I find pointless.
Diffstat (limited to 'example.py')
-rw-r--r--example.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/example.py b/example.py
index fe282be..3eaf996 100644
--- a/example.py
+++ b/example.py
@@ -22,9 +22,10 @@ This implements an fgrep-like utility.
'''
-import cliapp
import logging
+import cliapp
+
class ExampleApp(cliapp.Application):