Skip to content

Commit cf5fd25

Browse files
committed
Removed blank lines
1 parent b952c91 commit cf5fd25

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

package/MDAnalysis/fetch/fetchers.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ class _BaseFetcher(ABC):
9696
should inherit from it.
9797
9898
.. versionadded:: 2.11.0
99-
10099
"""
101100

102101
def __init__(
@@ -164,7 +163,6 @@ class StaticFetcher(_BaseFetcher):
164163
:mod:`pooch` as a backend for downloading and caching files.
165164
166165
.. versionadded:: 2.11.0
167-
168166
"""
169167

170168
def __init__(self, cache_path=None, hash="sha256"):
@@ -259,7 +257,6 @@ def fetch(
259257
exist relative to :attr:`cache_path`.
260258
261259
.. versionadded:: 2.11.0
262-
263260
"""
264261
# Keywords arguments that are reserved for common
265262
# _BaseFetcher.fetch() arguments.
@@ -404,7 +401,6 @@ def append_registry(self, db_path, files, write_duplicate=False):
404401
<filename> <hash_algorithm>:<digest>
405402
406403
.. versionadded:: 2.11.0
407-
408404
"""
409405
new_files = (self.cache_path / file_name for file_name in files)
410406

@@ -549,7 +545,6 @@ def read_registry(self, db_path):
549545
<filename> <hash_algorithm>:<digest>
550546
551547
.. versionadded:: 2.11.0
552-
553548
"""
554549
hash_dict = {}
555550

@@ -619,7 +614,6 @@ def write_registry(self, db_path, files, mode="w"):
619614
<filename> <hash_algorithm>:<digest>
620615
621616
.. versionadded:: 2.11.0
622-
623617
"""
624618
with open(db_path, mode=mode) as f:
625619
for file in files:

0 commit comments

Comments
 (0)