Return tuples from __dir__
This commit is contained in:
parent
cc187c2029
commit
6a56739c1e
@ -67,11 +67,7 @@ class Hierarchy(PathLike):
|
|||||||
return str(self._path)
|
return str(self._path)
|
||||||
|
|
||||||
def __dir__(self):
|
def __dir__(self):
|
||||||
<<<<<<< HEAD
|
|
||||||
return [
|
|
||||||
=======
|
|
||||||
return (
|
return (
|
||||||
>>>>>>> 2aff6704bc8f14d9a3f73178c4c1709bfc7812b5
|
|
||||||
"__dir__",
|
"__dir__",
|
||||||
"__eq__",
|
"__eq__",
|
||||||
"__fspath__",
|
"__fspath__",
|
||||||
@ -85,11 +81,7 @@ class Hierarchy(PathLike):
|
|||||||
"cleanup",
|
"cleanup",
|
||||||
"read_metadata",
|
"read_metadata",
|
||||||
"write_metadata",
|
"write_metadata",
|
||||||
<<<<<<< HEAD
|
|
||||||
]
|
|
||||||
=======
|
|
||||||
)
|
)
|
||||||
>>>>>>> 2aff6704bc8f14d9a3f73178c4c1709bfc7812b5
|
|
||||||
|
|
||||||
def _gen_metadata(self):
|
def _gen_metadata(self):
|
||||||
"""Generate metadata for this repository.
|
"""Generate metadata for this repository.
|
||||||
|
@ -144,11 +144,7 @@ class Repository(Hierarchy):
|
|||||||
return next(self._snapshot_iterator)
|
return next(self._snapshot_iterator)
|
||||||
|
|
||||||
def __dir__(self):
|
def __dir__(self):
|
||||||
<<<<<<< HEAD
|
|
||||||
return [
|
|
||||||
=======
|
|
||||||
return (
|
return (
|
||||||
>>>>>>> 2aff6704bc8f14d9a3f73178c4c1709bfc7812b5
|
|
||||||
super().__dir__(),
|
super().__dir__(),
|
||||||
"__contains__",
|
"__contains__",
|
||||||
"__delitem__",
|
"__delitem__",
|
||||||
@ -164,11 +160,7 @@ class Repository(Hierarchy):
|
|||||||
"cleanup",
|
"cleanup",
|
||||||
"create_snapshot",
|
"create_snapshot",
|
||||||
"symlink_snapshot",
|
"symlink_snapshot",
|
||||||
<<<<<<< HEAD
|
|
||||||
]
|
|
||||||
=======
|
|
||||||
)
|
)
|
||||||
>>>>>>> 2aff6704bc8f14d9a3f73178c4c1709bfc7812b5
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def is_valid_snapshot_name(name):
|
def is_valid_snapshot_name(name):
|
||||||
|
@ -32,11 +32,7 @@ class Snapshot(Hierarchy):
|
|||||||
self._pkg_dir = self.path / "pkg"
|
self._pkg_dir = self.path / "pkg"
|
||||||
|
|
||||||
def __dir__(self):
|
def __dir__(self):
|
||||||
<<<<<<< HEAD
|
|
||||||
return [super().__dir__(), "ctime", "pkg_dir"]
|
|
||||||
=======
|
|
||||||
return super().__dir__(), "ctime", "pkg_dir"
|
return super().__dir__(), "ctime", "pkg_dir"
|
||||||
>>>>>>> 2aff6704bc8f14d9a3f73178c4c1709bfc7812b5
|
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
"""Return a string representation of this Snapshot."""
|
"""Return a string representation of this Snapshot."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user