Skip to content

Commit 7d01174

Browse files
authored
chore: remove redundant spaces (#49)
1 parent 57b6170 commit 7d01174

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

write-yourself-a-git.org

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2430,7 +2430,7 @@ produce more elegant code in C than in Python…)
24302430
for i in range(0, count):
24312431
# Read creation time, as a unix timestamp (seconds since
24322432
# 1970-01-01 00:00:00, the "epoch")
2433-
ctime_s = int.from_bytes(content[idx: idx+4], "big")
2433+
ctime_s = int.from_bytes(content[idx: idx+4], "big")
24342434
# Read creation time, as nanoseconds after that timestamps,
24352435
# for extra precision.
24362436
ctime_ns = int.from_bytes(content[idx+4: idx+8], "big")
@@ -2464,7 +2464,7 @@ produce more elegant code in C than in Python…)
24642464
flag_assume_valid = (flags & 0b1000000000000000) != 0
24652465
flag_extended = (flags & 0b0100000000000000) != 0
24662466
assert not flag_extended
2467-
flag_stage = flags & 0b0011000000000000
2467+
flag_stage = flags & 0b0011000000000000
24682468
# Length of the name. This is stored on 12 bits, some max
24692469
# value is 0xFFF, 4095. Since names can occasionally go
24702470
# beyond that length, git treats 0xFFF as meaning at least

0 commit comments

Comments
 (0)