reduce code line length to 80 characters max

This commit is contained in:
neingeist 2014-03-10 09:36:48 +01:00
parent 5acfb44fd5
commit 34168e9bc5

3
anki-sin-cos-table.py Normal file → Executable file
View file

@ -20,7 +20,8 @@ def deduplicate(iterable):
xs = sorted(deduplicate(map(simplify,
[i * pi / 4 for i in range(-16, 16)] + [i * pi / 6 for i in range(-24, 24)])))
[i * pi / 4 for i in range(-16, 16)]
+ [i * pi / 6 for i in range(-24, 24)])))
for x in xs:
for f in [sin, cos, tan]: