Skip to content

Commit

Permalink
fix an issue, E501 line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
ssato committed Jun 21, 2015
1 parent 43e90dd commit 99c8fd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions anyconfig/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ def single_load(config_path, forced_type=None, ignore_missing=False,
try:
LOGGER.debug("Compiling: %s", config_path)
config_content = anyconfig.template.render(config_path, ac_context)
config = cparser.loads(config_content, ignore_missing=ignore_missing,
**kwargs)
config = cparser.loads(config_content,
ignore_missing=ignore_missing, **kwargs)
if ac_schema is not None:
if _validate(config, schema, format_checker):
return config
Expand Down

0 comments on commit 99c8fd7

Please sign in to comment.