Skip to content

Commit

Permalink
Fixed flake8 E501 line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
starofrainnight committed Jun 30, 2018
1 parent d431e5a commit 22390f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion emailddns/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ def client(ctx, **kwargs):

try:
ip = fetch_update_email(
kwargs.imap_host, kwargs.imap_port, kwargs.account, kwargs.password)
kwargs.imap_host, kwargs.imap_port,
kwargs.account, kwargs.password)
click.echo(ip)
except NoEMailError:
click.echo("NOTE: No IP update e-mails!")
Expand Down

0 comments on commit 22390f3

Please sign in to comment.