Deleted unnecessary 'returns' and 'passes'
[findit] / src / mvc / models / filesearch.py
1 #!/usr/bin/env python
2 # -*-coding: utf-8 -*-
3 # vim: sw=4 ts=4 expandtab ai
4 # pylint: disable-msg=C0301
5
6 from gtkmvc import Model
7
8
9 class FilesearchModel(Model):
10
11     # observable properties
12     __properties__ = {
13         'quantity'   : 10,
14         'start_path' : '\\',
15         'stopit'     : False,
16         }
17
18     def __init__(self):
19         Model.__init__(self)