Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7262f0c

Browse files
committed
--test accepted working, remaining test failed ascii
1 parent 1ae5f95 commit 7262f0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ def interpret_solution(
352352
typed_code=payload["typed_code"],
353353
question_id=payload["question_id"],
354354
test_mode=False,
355-
lang="python3",
355+
lang="python3", #change this
356356
)
357357
interpretation_id = api_instance.problems_problem_interpret_solution_post(
358358
problem=title_slug, body=test_submission
@@ -401,7 +401,7 @@ def submit_solution(
401401
typed_code=code,
402402
question_id=question_id,
403403
test_mode=False,
404-
lang="python3",
404+
lang="python3", #change this
405405
)
406406

407407
# Submit the code and get the submission ID
@@ -585,7 +585,7 @@ def main(config, question, solve, test, submit, help):
585585
code = file.read()
586586

587587
payload = {
588-
"lang": "python3",
588+
"lang": "python3", #change htis
589589
"question_id": question_id,
590590
"typed_code": code,
591591
"data_input": sample_test_case,

0 commit comments

Comments
 (0)