From 7c79e4c848c822ac69108f4b0323b08488f79bb9 Mon Sep 17 00:00:00 2001 From: newbie1111 Date: Thu, 21 Dec 2023 03:31:34 +0900 Subject: [PATCH] Fix typo --- onlinejudge_command/subcommand/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onlinejudge_command/subcommand/test.py b/onlinejudge_command/subcommand/test.py index 90599470..8b058968 100644 --- a/onlinejudge_command/subcommand/test.py +++ b/onlinejudge_command/subcommand/test.py @@ -338,7 +338,7 @@ def run(args: 'argparse.Namespace') -> int: history += [test_single_case(name, paths['in'], paths.get('out'), args=args)] else: if os.name == 'nt': - logger.warning("-j/--jobs opiton is unstable on Windows environmet") + logger.warning("-j/--jobs opiton is unstable on Windows environment") with concurrent.futures.ThreadPoolExecutor(max_workers=args.jobs) as executor: lock = threading.Lock() futures: List[concurrent.futures.Future] = []