Skip to content

Commit

Permalink
refactor(utility): remove parent class "ReprMixin" in "URL"
Browse files Browse the repository at this point in the history
  • Loading branch information
zhen.chen committed Nov 5, 2021
1 parent 7d1fa11 commit 002f594
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tensorbay/utility/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from tensorbay.utility.repr import ReprMixin


class URL(ReprMixin):
class URL:
"""URL is a class used to get and update the url.
Arguments:
Expand All @@ -41,7 +41,7 @@ def from_getter(cls, getter: Callable[..., str], updater: Callable[[], Optional[
updater: The updater of the url.
Returns:
The URL instance which stores the url the updater.
The URL instance which stores the url and the updater.
"""
obj: "URL" = object.__new__(cls)
Expand Down

0 comments on commit 002f594

Please sign in to comment.