From 57b51a83b5c55d1e7fa0e1f79090ab2bd7c50713 Mon Sep 17 00:00:00 2001 From: ListsOfArrays Date: Tue, 16 Sep 2025 23:15:27 -0400 Subject: [PATCH] Extra README.md files broke fixed it to only iterate over the folders instead of the files. Part of me thinks we could do ./*/*/ instead but I don't want to tempt fate. --- check.py | 2 +- crypto/README.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 crypto/README.md diff --git a/check.py b/check.py index 12a8eb0..299f6f7 100644 --- a/check.py +++ b/check.py @@ -91,7 +91,7 @@ def main(): }, ] - challenges = glob.glob("./*/*") + challenges = [path for path in glob.glob("./*/*") if os.path.isdir(path)] chal_res = [] for challenge in challenges: diff --git a/crypto/README.md b/crypto/README.md new file mode 100644 index 0000000..578435b --- /dev/null +++ b/crypto/README.md @@ -0,0 +1,6 @@ +# An extra README.md +Lies. + +Programmers HATE extra documentation. + +But using this ONE WEIRD TRICK... \ No newline at end of file