Skip to content

Commit

Permalink
chore: bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wonleeyoung committed Jun 11, 2024
1 parent c963495 commit 663ffac
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions BE/green_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def get_LLM_response(code_data: str):

def execute_java_code(code: str):
code = code.replace('\u00A0', ' ')

code = code.replace("\xc2\xa0", " ")
match = re.search(r'public\s+class\s+(\w+)', code)
if not match:
Expand Down

0 comments on commit 663ffac

Please sign in to comment.