diff options
author | Matt Lyon <matthewlyon18@gmail.com> | 2019-11-26 21:53:53 +1100 |
---|---|---|
committer | Matt Lyon <matthewlyon18@gmail.com> | 2019-11-26 21:53:53 +1100 |
commit | 74a24c65973cca4546de799cc8316a4c2c20b66c (patch) | |
tree | 5900c456a8c7cd7fc4127bde7ac7572b5cfb6de5 /tpblite | |
parent | f2672cba007a3e7aa2ba3493875335caee955dbd (diff) | |
download | tpb-lite-74a24c65973cca4546de799cc8316a4c2c20b66c.tar.gz tpb-lite-74a24c65973cca4546de799cc8316a4c2c20b66c.tar.bz2 tpb-lite-74a24c65973cca4546de799cc8316a4c2c20b66c.zip |
added TODO
Diffstat (limited to 'tpblite')
-rw-r--r-- | tpblite/models/torrents.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tpblite/models/torrents.py b/tpblite/models/torrents.py index 27adddf..a60ee0a 100644 --- a/tpblite/models/torrents.py +++ b/tpblite/models/torrents.py @@ -91,6 +91,7 @@ class Torrents(object): return rows def getBestTorrent(self, min_seeds=30, min_filesize='1 GiB', max_filesize='4 GiB'): + '''TODO: handle if this is 0''' if not type(min_filesize) == 'int': min_filesize = fileSizeStrToInt(min_filesize) if not type(max_filesize) == 'int': |