summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-02-20 08:28:30 +0100
committerMattias Andrée <maandree@operamail.com>2014-02-20 08:28:30 +0100
commit2365e07c7226a1c3df702747378a0607d91fd995 (patch)
tree8dc94f14f7222af6101adb52c64b78b351959c39 /src
parentinfo: colour convertion (diff)
downloadblueshift-2365e07c7226a1c3df702747378a0607d91fd995.tar.gz
blueshift-2365e07c7226a1c3df702747378a0607d91fd995.tar.bz2
blueshift-2365e07c7226a1c3df702747378a0607d91fd995.tar.xz
m doc + applying adjustments
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rw-r--r--src/monitor.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/monitor.py b/src/monitor.py
index 595d2b7..f50c9dc 100644
--- a/src/monitor.py
+++ b/src/monitor.py
@@ -31,7 +31,8 @@ def translate_to_integers():
'''
Translate the curves from float to integer
- @param :(int, int, int) The red curve, the green curve and the blue curve, mapped to integers
+ @param :(list<int>, list<int>, list<int>) The red curve, the green curve and,
+ the blue curve mapped to integers
'''
R_curve, G_curve, B_curve = [0] * i_size, [0] * i_size, [0] * i_size
for i_curve, o_curve in ((r_curve, R_curve), (g_curve, G_curve), (b_curve, B_curve)):