Skip to content

Commit

Permalink
Flake8 clean
Browse files Browse the repository at this point in the history
  • Loading branch information
medmunds committed Apr 16, 2017
1 parent 853a7cd commit 8bdc679
Show file tree
Hide file tree
Showing 15 changed files with 58 additions and 57 deletions.
2 changes: 2 additions & 0 deletions .flake8
@@ -0,0 +1,2 @@
[flake8]
max-line-length = 120
3 changes: 2 additions & 1 deletion anymail/__init__.py
@@ -1 +1,2 @@
from ._version import __version__, VERSION
# Expose package version at root of package
from ._version import __version__, VERSION # NOQA: F401
2 changes: 1 addition & 1 deletion anymail/backends/base.py
Expand Up @@ -282,7 +282,7 @@ def unsupported_feature(self, feature):

def validate_not_bare_string(self, attr, value):
"""EmailMessage to, cc, bcc, and reply_to are specced to be lists of strings.
This catches the common error where a single string is used instead.
(See also checks in EmailMessage.__init__.)
"""
Expand Down
3 changes: 2 additions & 1 deletion anymail/backends/mandrill.py
Expand Up @@ -214,7 +214,7 @@ def process_esp_extra(self):
{'rcpt': rcpt, 'values': recipient_metadata[rcpt]}
for rcpt in sorted(recipient_metadata.keys())]
# Merge esp_extra with payload data: shallow merge within ['message'] and top-level keys
self.data.update({k:v for k,v in esp_extra.items() if k != 'message'})
self.data.update({k: v for k, v in esp_extra.items() if k != 'message'})
try:
self.data['message'].update(esp_extra['message'])
except KeyError:
Expand Down Expand Up @@ -311,4 +311,5 @@ def setter(self, value):
setter.__name__ = setter_name
return setter


MandrillPayload.define_message_attr_setters()
1 change: 0 additions & 1 deletion anymail/backends/sendgrid.py
Expand Up @@ -344,4 +344,3 @@ def set_esp_extra(self, extra):
"or use 'anymail.backends.sendgrid_v2.EmailBackend' for the old API."
)
update_deep(self.data, extra)

1 change: 0 additions & 1 deletion anymail/webhooks/sendgrid.py
Expand Up @@ -120,4 +120,3 @@ def esp_to_anymail_event(self, esp_event):
'url_offset', # click tracking
'useragent', # click/open tracking
}

87 changes: 44 additions & 43 deletions docs/conf.py
Expand Up @@ -11,7 +11,8 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import sys, os
import os
import sys
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'

# If extensions (or modules to document with autodoc) are in another directory,
Expand Down Expand Up @@ -43,7 +44,7 @@
source_suffix = '.rst'

# The encoding of source files.
#source_encoding = 'utf-8-sig'
# source_encoding = 'utf-8-sig'

# The master toctree document.
master_doc = 'index'
Expand All @@ -64,13 +65,13 @@

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#language = None
# language = None

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
#today = ''
# today = ''
# Else, today_fmt is used as the format for a strftime call.
#today_fmt = '%B %d, %Y'
# today_fmt = '%B %d, %Y'

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand All @@ -80,21 +81,21 @@
default_role = "py:obj"

# If true, '()' will be appended to :func: etc. cross-reference text.
#add_function_parentheses = True
# add_function_parentheses = True

# If true, the current module name will be prepended to all description
# unit titles (such as .. function::).
#add_module_names = True
# add_module_names = True

# If true, sectionauthor and moduleauthor directives will be shown in the
# output. They are ignored by default.
#show_authors = False
# show_authors = False

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'

# A list of ignored prefixes for module index sorting.
#modindex_common_prefix = []
# modindex_common_prefix = []


# -- Options for HTML output ---------------------------------------------------
Expand All @@ -110,26 +111,26 @@
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#html_theme_options = {}
# html_theme_options = {}

# Add any paths that contain custom themes here, relative to this directory.
#html_theme_path = []
# html_theme_path = []

# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
#html_title = None
# html_title = None

# A shorter title for the navigation bar. Default is the same as html_title.
#html_short_title = None
# html_short_title = None

# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
#html_logo = None
# html_logo = None

# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
#html_favicon = None
# html_favicon = None

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
Expand All @@ -138,44 +139,44 @@

# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
#html_last_updated_fmt = '%b %d, %Y'
# html_last_updated_fmt = '%b %d, %Y'

# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.
#html_use_smartypants = True
# html_use_smartypants = True

# Custom sidebar templates, maps document names to template names.
#html_sidebars = {}
# html_sidebars = {}

# Additional templates that should be rendered to pages, maps page names to
# template names.
#html_additional_pages = {}
# html_additional_pages = {}

# If false, no module index is generated.
#html_domain_indices = True
# html_domain_indices = True

# If false, no index is generated.
#html_use_index = True
# html_use_index = True

# If true, the index is split into individual pages for each letter.
#html_split_index = False
# html_split_index = False

# If true, links to the reST sources are added to the pages.
#html_show_sourcelink = True
# html_show_sourcelink = True

# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
#html_show_sphinx = True
# html_show_sphinx = True

# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
#html_show_copyright = True
# html_show_copyright = True

# If true, an OpenSearch description file will be output, and all pages will
# contain a <link> tag referring to it. The value of this option must be the
# base URL from which the finished HTML is served.
#html_use_opensearch = ''
# html_use_opensearch = ''

# This is the file name suffix for HTML files (e.g. ".xhtml").
#html_file_suffix = None
# html_file_suffix = None

# Output file base name for HTML help builder.
htmlhelp_basename = 'Anymaildoc'
Expand All @@ -184,14 +185,14 @@
# -- Options for LaTeX output --------------------------------------------------

latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#'papersize': 'letterpaper',
# The paper size ('letterpaper' or 'a4paper').
# 'papersize': 'letterpaper',

# The font size ('10pt', '11pt' or '12pt').
#'pointsize': '10pt',
# The font size ('10pt', '11pt' or '12pt').
# 'pointsize': '10pt',

# Additional stuff for the LaTeX preamble.
#'preamble': '',
# Additional stuff for the LaTeX preamble.
# 'preamble': '',
}

# Grouping the document tree into LaTeX files. List of tuples
Expand All @@ -203,23 +204,23 @@

# The name of an image file (relative to this directory) to place at the top of
# the title page.
#latex_logo = None
# latex_logo = None

# For "manual" documents, if this is true, then toplevel headings are parts,
# not chapters.
#latex_use_parts = False
# latex_use_parts = False

# If true, show page references after internal links.
#latex_show_pagerefs = False
# latex_show_pagerefs = False

# If true, show URL addresses after external links.
#latex_show_urls = False
# latex_show_urls = False

# Documents to append as an appendix to all manuals.
#latex_appendices = []
# latex_appendices = []

# If false, no module index is generated.
#latex_domain_indices = True
# latex_domain_indices = True


# -- Options for manual page output --------------------------------------------
Expand All @@ -232,7 +233,7 @@
]

# If true, show URL addresses after external links.
#man_show_urls = False
# man_show_urls = False


# -- Options for Texinfo output ------------------------------------------------
Expand All @@ -247,13 +248,13 @@
]

# Documents to append as an appendix to all manuals.
#texinfo_appendices = []
# texinfo_appendices = []

# If false, no module index is generated.
#texinfo_domain_indices = True
# texinfo_domain_indices = True

# How to display URL addresses: 'footnote', 'no', or 'inline'.
#texinfo_show_urls = 'footnote'
# texinfo_show_urls = 'footnote'


# -- Options for Intersphinx ------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Expand Up @@ -20,9 +20,11 @@ def long_description_from_readme(rst):
release, rst) # (?<=...) is "positive lookbehind": must be there, but won't get replaced
return rst


with open('README.rst') as f:
long_description = long_description_from_readme(f.read())


setup(
name="django-anymail",
version=__version__,
Expand Down
1 change: 0 additions & 1 deletion tests/test_general_backend.py
Expand Up @@ -315,4 +315,3 @@ def test_explains_reply_to_must_be_list_lazy(self):
self.message.reply_to = ugettext_lazy("single-reply-to@example.com")
with self.assertRaisesMessage(TypeError, '"reply_to" attribute must be a list or other iterable'):
self.message.send()

1 change: 0 additions & 1 deletion tests/test_mailgun_backend.py
Expand Up @@ -526,4 +526,3 @@ def test_renamed_backend_warning(self):
with self.assertWarnsRegex(DeprecationWarning,
r'anymail\.backends\.mailgun\.EmailBackend'):
self.message.send()

2 changes: 1 addition & 1 deletion tests/test_mandrill_backend.py
Expand Up @@ -416,7 +416,7 @@ def test_esp_extra_recipient_metadata(self):
# Anymail expands simple python dicts into the more-verbose
# rcpt/values lists the Mandrill API uses
"customer@example.com": {'cust_id': "67890", 'order_id': "54321"},
"guest@example.com": {'cust_id': "94107", 'order_id': "43215"} ,
"guest@example.com": {'cust_id': "94107", 'order_id': "43215"},
}}}
self.message.send()
data = self.get_api_call_json()
Expand Down
1 change: 0 additions & 1 deletion tests/test_postmark_webhooks.py
Expand Up @@ -106,4 +106,3 @@ def test_open_event(self):
self.assertEqual(event.message_id, "f4830d10-9c35-4f0c-bca3-3d9b459821f8")
self.assertEqual(event.recipient, "recipient@example.com")
self.assertEqual(event.user_agent, "Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0")

4 changes: 2 additions & 2 deletions tests/test_sendgrid_backend.py
Expand Up @@ -599,9 +599,9 @@ def test_undocumented_workaround_name_quote_bug_setting(self):
['"Recipient, Ltd." <to@example.com>'])
data = self.get_api_call_json()
self.assertEqual(data["personalizations"][0]["to"][0],
{"email": "to@example.com", "name": "Recipient, Ltd."}) # no extra quotes on name
{"email": "to@example.com", "name": "Recipient, Ltd."}) # no extra quotes on name
self.assertEqual(data["from"],
{"email": "from@example.com", "name": "Sender, Inc."})
{"email": "from@example.com", "name": "Sender, Inc."})


class SendGridBackendRecipientsRefusedTests(SendGridBackendMockAPITestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils.py
Expand Up @@ -112,7 +112,7 @@ def test_force_none(self):

def test_force_dict(self):
result = force_non_lazy_dict({'a': 1, 'b': ugettext_lazy(u"b"),
'c': {'c1': ugettext_lazy(u"c1")}})
'c': {'c1': ugettext_lazy(u"c1")}})
self.assertEqual(result, {'a': 1, 'b': u"b", 'c': {'c1': u"c1"}})
self.assertIsInstance(result['b'], six.text_type)
self.assertIsInstance(result['c']['c1'], six.text_type)
Expand Down
3 changes: 1 addition & 2 deletions tests/utils.py
Expand Up @@ -167,8 +167,7 @@ def __exit__(self, exc_type, exc_value, tb):
continue
if first_matching is None:
first_matching = w
if (self.expected_regex is not None and
not self.expected_regex.search(str(w))):
if self.expected_regex is not None and not self.expected_regex.search(str(w)):
continue
# store warning for later retrieval
self.warning = w
Expand Down

0 comments on commit 8bdc679

Please sign in to comment.