Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

''' 

Settings file that contains global settings for the mint project. 

''' 

import os 

import inspect 

 

 

MAIN_DIRECTORY = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))) 

DATA_FILE = os.path.join(MAIN_DIRECTORY, 'transactions.csv') 

OTHER_LIMIT = 300 

 

 

if __name__ == '__main__': # pragma: no cover 

print(MAIN_DIRECTORY) 

print(DATA_FILE)