summaryrefslogtreecommitdiffstats
path: root/gamechestcli/structures.py
blob: 22b0e7ef5c56b8583e22dcf94730fc60751519f1 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/python3

import collections

Progress = collections.namedtuple(
    'CurrentProgress',
    'bytes percent speed eta',
    defaults=[0, 0, 0, 'infinite'])