Skip to content

Commit

Permalink
Remove trailing white space
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudia Ng authored and Claudia Ng committed Oct 3, 2023
1 parent c507f1c commit f12f66a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ def parse_email(email_address: str) -> str | None:


# from typing import Union
#
#
# def parse_email(email_address: str) -> Union[str, None]:
# if "@" in email_address:
# username, domain = email_address.split("@")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ def parse_email(email_address: str) -> tuple[str, str] | None:


# from typing import Tuple, Union
#
#
# def parse_email(email_address: str) -> Union[Tuple[str, str], None]:
# if "@" in email_address:
# username, domain = email_address.split("@")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ def parse_emails(emails: list[str]) -> Iterator[tuple[str, str]]:


# from collections.abc import Iterable
#
#
# def parse_emails(emails: Iterable[str]) -> Iterable[tuple[str, str]]:
# for email in emails:
# if "@" in email:
Expand Down

0 comments on commit f12f66a

Please sign in to comment.