Skip to content

Commit

Permalink
MAINT: Use correct names
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Feb 11, 2023
1 parent 8b66479 commit ab99396
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions asv/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import collections
import multiprocessing

import pyjson5
import json5

WIN = (os.name == 'nt')

Expand Down Expand Up @@ -825,7 +825,7 @@ def load_json(path, api_version=None, js_comments=False):

if js_comments:
# strips comments out
data = pyjson5.loads(content)
data = json5.loads(content)
else:
try:
data = json.loads(content)
Expand Down

0 comments on commit ab99396

Please sign in to comment.