From 265ea03066fef315419326cdf3cf4a9324124e3b Mon Sep 17 00:00:00 2001 From: guest20 Date: Tue, 4 Aug 2026 10:24:30 +0200 Subject: [PATCH] robots.py: duplciate parser = argparse.ArgumentParser(...) Two is just greedy --- code/robots.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/robots.py b/code/robots.py index 48584f2..2f2c444 100755 --- a/code/robots.py +++ b/code/robots.py @@ -266,8 +266,7 @@ def conversions(): if __name__ == "__main__": import argparse - - parser = argparse.ArgumentParser() + parser = argparse.ArgumentParser( prog="ai-robots", description="Collects and updates information about web scrapers of AI companies.",