Skip to content

Commit

Permalink
fix: add json decode error import (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Smith authored Mar 11, 2024
1 parent 4dc6a5a commit 7327175
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions storage3/_async/file_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import urllib.parse
from dataclasses import dataclass, field
from io import BufferedReader, FileIO
from json import JSONDecodeError
from pathlib import Path
from typing import Any, Literal, Optional, Union, cast

Expand Down
1 change: 1 addition & 0 deletions storage3/_sync/file_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import urllib.parse
from dataclasses import dataclass, field
from io import BufferedReader, FileIO
from json import JSONDecodeError
from pathlib import Path
from typing import Any, Literal, Optional, Union, cast

Expand Down

0 comments on commit 7327175

Please sign in to comment.