51d612d8f51382e63ceba9cf6b4ca2ca197db69c
[findit] / src / input.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 class Input(object):
7     def __init__(self, parser):
8         self.ui = parser
9         self.get_st_par()
10     
11     def get_st_par(self):
12         self.st_dir, self.st_cnt = self.ui.get()
13         return self.st_dir, self.st_cnt