From 6b51ad76aae4984349fbd03d2a86b60666a0abe3 Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Wed, 3 Sep 2025 23:15:38 +0800 Subject: [PATCH] feat: updates --- math.py => math_test.py | 0 subprocess_test.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename math.py => math_test.py (100%) diff --git a/math.py b/math_test.py similarity index 100% rename from math.py rename to math_test.py diff --git a/subprocess_test.py b/subprocess_test.py index 05fb69a..2dc6bd3 100755 --- a/subprocess_test.py +++ b/subprocess_test.py @@ -7,7 +7,7 @@ if __name__ == "__main__": ['curl', 'https://hatter.ink/ip.action'], capture_output=True, text=True, - # timeout=30, + timeout=30, ) print('return code:', result.returncode) print(result.stdout)