Skip to content

Commit

Permalink
refactor: remove custom cached_property
Browse files Browse the repository at this point in the history
we are only supporting 3.8 going forward
  • Loading branch information
iloveitaly committed Oct 19, 2023
1 parent cc417ea commit fa4debc
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 32 deletions.
2 changes: 1 addition & 1 deletion netsuite/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .rest_api import NetSuiteRestApi
from .restlet import NetSuiteRestlet
from .soap_api import NetSuiteSoapApi
from .util import cached_property
from functools import cached_property

__all__ = ("NetSuite",)

Expand Down
2 changes: 1 addition & 1 deletion netsuite/rest_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from . import rest_api_base
from .config import Config
from .util import cached_property
from functools import cached_property

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion netsuite/rest_api_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from . import json
from .exceptions import NetsuiteAPIRequestError, NetsuiteAPIResponseParsingError
from .util import cached_property
from functools import cached_property

__all__ = ("RestApiBase",)

Expand Down
2 changes: 1 addition & 1 deletion netsuite/restlet.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from . import rest_api_base
from .config import Config
from .util import cached_property
from functools import cached_property

logger = logging.getLogger(__name__)

Expand Down
28 changes: 0 additions & 28 deletions netsuite/util.py

This file was deleted.

0 comments on commit fa4debc

Please sign in to comment.