Skip to content

Commit 13d531a

Browse files
committed
lint
1 parent bb6763b commit 13d531a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gitutils/email.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ def cli():
6969

7070
for d, emails in gitemail(P.path, P.exclude, timeout=P.timeout):
7171
print(MAGENTA + d.stem + BLACK)
72-
for email in emails:
73-
print(*email)
72+
for e in emails:
73+
print(*e)
7474

7575

7676
if __name__ == "__main__":

0 commit comments

Comments
 (0)