Skip to content

Commit

Permalink
Fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Nov 8, 2023
1 parent e3ca1cb commit 6261aa0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dulwich/pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@


class UnresolvedDeltas(Exception):
""" "Delta objects could not be resolved."""
"""Delta objects could not be resolved."""

def __init__(self, shas):
self.shas = shas
Expand Down Expand Up @@ -1914,9 +1914,9 @@ def pack_objects_to_data(
return (
count,
deltify_pack_objects(
iter(objects), window_size=delta_window_size, progress=progress
iter(objects), window_size=delta_window_size, progress=progress # type: ignore
),
) # type: ignore
)
else:

def iter_without_path():
Expand Down

0 comments on commit 6261aa0

Please sign in to comment.