From d749c8c9838f72a00b1d581102993d96481cd3a7 Mon Sep 17 00:00:00 2001 From: gogo Date: Sat, 16 Nov 2024 19:20:09 +0100 Subject: [PATCH] fix critical bug that uses a wrong username --- bins/measure.py | 4 ++-- pyproject.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bins/measure.py b/bins/measure.py index 5cb6caa..cd2a7bd 100644 --- a/bins/measure.py +++ b/bins/measure.py @@ -33,8 +33,8 @@ def main(): print("pass {0}/{1} executed".format(i, repeats)) for c in characters: data = { - 'username': 'AAAAAAAA'.format(c), #openai - 'password': '{0}AAAAAAA' #isCloseAi + 'username': "openai", #openai + 'password': "{0}AAAAAAA".format(c) #isCloseAi } print("requesting") diff --git a/pyproject.toml b/pyproject.toml index cd031b7..26bbe3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "modular_time_fuzzer" -version = "0.0.5" +version = "0.0.6" authors = [ { name="gogo246475", email="gogo246475@gmail.com" }, ] @@ -18,8 +18,8 @@ dependencies = [ ] [project.urls] -Homepage = "https://github.com/pypa/sampleproject" -Issues = "https://github.com/pypa/sampleproject/issues" +Homepage = "https://github.com/gogo2464/modular-time-fuzzer/" +Issues = "https://github.com/gogo2464/modular-time-fuzzer/issues/" [project.scripts] measure = "bins.measure:main"