Skip to content

Commit 4073465

Browse files
committed
[CHORE] Added todos
Signed-off-by: Jules Lasne (seluj78) <jlasne@student.42.fr>
1 parent 5594d66 commit 4073465

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

PyChecker/projects/libft.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ def check(root_path: str, args):
8888
if not args.no_maintest:
8989
maintest_ok, maintest_fail = maintest.run_libft(args.path, root_path)
9090
if not args.no_libft_unit_test:
91+
# @todo: Add return message/values to results for libft-unit-test
9192
libft_unit_test.run(root_path, args)
9293
print("\n\n\nThe results are in:\n")
9394
if not args.no_author:

PyChecker/utils/static.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ def check(root_path: str, args):
1313
result = subprocess.run(['sh', root_path + '/scripts/check_static.sh', args.path],
1414
stdout=subprocess.PIPE).stdout.decode('utf-8')
1515
file.write(result)
16-
# @todo Fix error message from script.
16+
# @todo: Replace check_static script with a python way of doing it
1717
print(result)
1818
return result

0 commit comments

Comments
 (0)