Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/ReckonPrimer.activity/collection.py
blob: 95d7f8d31fdf5943c8a8df6471f1aa7c9c26f2b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- coding: utf-8 -*-

from settings import Settings

class Collection:

    def __init__(self):
        self._sett = Settings()
        # these data should come from pickle (see code in Settings)
        self._data = [self._sett.get_setting('addsub_simp'),
                      self._sett.get_setting('passten'),
                      self._sett.get_setting('times_div')]

    #def