|
|
@@ -263,7 +263,7 @@ def list_tasks(tasks, workspace, filters):
|
|
|
|
|
|
rank = round(task["rank"], 4) if task["rank"] is not None else ""
|
|
|
|
|
|
- bounty = "$" + str(round(task["bounty"], 4)) if task["bounty"] is not None else ""
|
|
|
+ bounty = "$" + str(round(task["bounty"], 4)) if task.get("bounty") is not None else ""
|
|
|
|
|
|
if status == "start":
|
|
|
id = Fore.GREEN + str(id) + Style.RESET_ALL
|
|
|
@@ -583,7 +583,7 @@ def map_ids(task_ids, ref_ids):
|
|
|
return dict(zip(task_ids, ref_ids))
|
|
|
|
|
|
async def main():
|
|
|
- val = str('127.0.0.1:23330')
|
|
|
+ val = str('127.0.0.1:9805')
|
|
|
allowed_states = ["start", "pause", "stop", "open"]
|
|
|
|
|
|
for i in range(1, len(sys.argv)):
|