Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
WooilJeong committed Jan 22, 2024
1 parent b26c879 commit 805c73a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PublicDataReader/utils/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def get_code_dong_by_url(url):
URL로 동 코드 JSON 읽기
"""
res = requests.get(url)
return res.json()
return json.loads(res.content)


def read_json_file(file_path):
Expand Down

0 comments on commit 805c73a

Please sign in to comment.