fix: pool emitting

This commit is contained in:
0xMochan
2024-05-07 10:16:22 -05:00
parent 2d9ba502ca
commit 7c49d3e813
6 changed files with 77 additions and 66 deletions

View File

@@ -47,7 +47,7 @@ def encode_json_to_query_params(params: list[dict[str, Any]]):
def main():
with open(PARAMETERS, "r") as f:
params = json.load(f)
print('"', encode_json_to_query_params(params), '"', sep="")
print(encode_json_to_query_params(params))
if __name__ == "__main__":