numerapi 2.20.5__tar.gz → 2.20.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {numerapi-2.20.5 → numerapi-2.20.6}/PKG-INFO +1 -1
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi/cli.py +2 -4
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi.egg-info/PKG-INFO +1 -1
- {numerapi-2.20.5 → numerapi-2.20.6}/setup.py +1 -1
- {numerapi-2.20.5 → numerapi-2.20.6}/LICENSE +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/README.md +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi/__init__.py +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi/base_api.py +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi/cryptoapi.py +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi/numerapi.py +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi/py.typed +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi/signalsapi.py +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi/utils.py +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi.egg-info/SOURCES.txt +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi.egg-info/dependency_links.txt +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi.egg-info/entry_points.txt +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi.egg-info/requires.txt +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/numerapi.egg-info/top_level.txt +0 -0
- {numerapi-2.20.5 → numerapi-2.20.6}/setup.cfg +0 -0
|
@@ -103,13 +103,11 @@ def submission_filenames(round_num, tournament, model_id):
|
|
|
103
103
|
|
|
104
104
|
|
|
105
105
|
@cli.command()
|
|
106
|
-
@click.option('--tournament', default=8,
|
|
107
|
-
help='The ID of the tournament, defaults to 8')
|
|
108
106
|
@click.option('--hours', default=12,
|
|
109
107
|
help='timeframe to consider, defaults to 12')
|
|
110
|
-
def check_new_round(hours=12
|
|
108
|
+
def check_new_round(hours=12):
|
|
111
109
|
"""Check if a new round has started within the last `hours`."""
|
|
112
|
-
click.echo(int(napi.check_new_round(hours=hours
|
|
110
|
+
click.echo(int(napi.check_new_round(hours=hours)))
|
|
113
111
|
|
|
114
112
|
|
|
115
113
|
@cli.command()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|