Skip to content

Commit

Permalink
Don't require requests for OciImageNotFoundException
Browse files Browse the repository at this point in the history
  • Loading branch information
8R0WNI3 committed Oct 7, 2024
1 parent a224924 commit b71bfc0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions oci/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import urllib.parse

import dacite
import requests

import oci.util

Expand Down Expand Up @@ -259,7 +258,7 @@ class OciManifestSchemaVersion(enum.Enum):
V2 = 2


class OciImageNotFoundException(requests.exceptions.HTTPError):
class OciImageNotFoundException(Exception):
pass


Expand Down

0 comments on commit b71bfc0

Please sign in to comment.