mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
tweak call args
This commit is contained in:
parent
014cc035ee
commit
525787b33f
1 changed files with 3 additions and 3 deletions
|
@ -20,18 +20,18 @@ colSusp = "#ff0"
|
||||||
|
|
||||||
class Graphs(object):
|
class Graphs(object):
|
||||||
|
|
||||||
def __init__(self, deck, selective=True):
|
def __init__(self, deck):
|
||||||
self.deck = deck
|
self.deck = deck
|
||||||
self._stats = None
|
self._stats = None
|
||||||
self.selective = selective
|
|
||||||
self.type = 0
|
self.type = 0
|
||||||
self.width = 600
|
self.width = 600
|
||||||
self.height = 200
|
self.height = 200
|
||||||
|
|
||||||
def report(self, type=0):
|
def report(self, type=0, selective=True):
|
||||||
# 0=days, 1=weeks, 2=months
|
# 0=days, 1=weeks, 2=months
|
||||||
# period-dependent graphs
|
# period-dependent graphs
|
||||||
self.type = type
|
self.type = type
|
||||||
|
self.selective = selective
|
||||||
txt = self.css
|
txt = self.css
|
||||||
txt += self.dueGraph()
|
txt += self.dueGraph()
|
||||||
txt += self.repsGraph()
|
txt += self.repsGraph()
|
||||||
|
|
Loading…
Reference in a new issue