Skip to content

Commit e12a084

Browse files
committed
Update docstrings #660
Signed-off-by: Jono Yang <[email protected]>
1 parent 644fbc0 commit e12a084

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

minecode_pipelines/pipes/maven.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -625,24 +625,23 @@ def __del__(self):
625625
def _fetch_index(self, uri=MAVEN_INDEX_URL):
626626
"""
627627
Fetch the maven index at `uri` and return a Download with information
628-
about where the maven index was saved.
628+
about where it was saved.
629629
"""
630630
index = fetch_http(uri)
631631
return index
632632

633633
def _fetch_index_properties(self, uri=MAVEN_INDEX_PROPERTIES_URL):
634634
"""
635635
Fetch the maven index properties file at `uri` and return a Download
636-
with information about where the maven index properties file was saved.
636+
with information about where it was saved.
637637
"""
638638
index_properties = fetch_http(uri)
639639
return index_properties
640640

641641
def _fetch_index_increments(self, last_incremental):
642642
"""
643643
Fetch maven index increments, starting past `last_incremental`, and
644-
return a list of Downloads with information about where the maven index
645-
increments were saved.
644+
return a list of Downloads with information about where they were saved.
646645
"""
647646
index_increment_downloads = []
648647
for key, increment_index in self.index_properties.items():

0 commit comments

Comments
 (0)