File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff 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 ():
You can’t perform that action at this time.
0 commit comments