amadanmath

Results 14 issues of amadanmath

`totals_in_era` should only be changed in restat's `add_encounter_to_era_area_stats` if `phase` is not `"All"`.

future enhancement
restat

Some people are renaming their files to repeating names, and the uploaded files end up being overwritten (and thus wrong, when downloaded). Unique naming schema on server is needed.

future enhancement
quality of life

MCVE: ``` import trio from quart_trio import QuartTrio from exceptiongroup import catch app = QuartTrio(__name__) @app.route('/') async def data(): return {} async def serve(): async with trio.open_nursery() as nursery: nursery.start_soon(app.run_task,...

`Timestamp.to_seconds` is there to convert the timestamp into seconds. It might be helpful if there was also the opposite method, to build a timestamp from seconds — for example, when...