Skip to content

Commit

Permalink
Minor formatting consistency improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
EliahKagan committed Dec 1, 2023
1 parent 12bbace commit 928ca1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions git/index/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,8 @@


class IndexFile(LazyMixin, git_diff.Diffable, Serializable):
"""
An Index that can be manipulated using a native implementation in order to save git
command function calls wherever possible.
"""An Index that can be manipulated using a native implementation in order to save
git command function calls wherever possible.
This provides custom merging facilities allowing to merge without actually changing
your index or your working tree. This way you can perform own test-merges based
Expand Down Expand Up @@ -380,6 +379,7 @@ def from_tree(cls, repo: "Repo", *treeish: Treeish, **kwargs: Any) -> "IndexFile
# END index merge handling

# UTILITIES

@unbare_repo
def _iter_expand_paths(self: "IndexFile", paths: Sequence[PathLike]) -> Iterator[PathLike]:
"""Expand the directories in list of paths to the corresponding paths accordingly.
Expand Down

0 comments on commit 928ca1e

Please sign in to comment.