Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
bollwyvl committed Jul 13, 2015
1 parent d8d4370 commit 76586d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ipymd/formats/markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,9 @@ def read(self, text, rules=None):
if cells:
raise ValueError("Notebook metadata must appear first")
cells.append(cell_or_meta)
elif cell_or_meta.get("is_meta", None) and cell_or_meta["metadata"]:
elif (
cell_or_meta.get("is_meta", None) and cell_or_meta["metadata"]
):
cells_and_meta[i + 1].update(
metadata=cell_or_meta["metadata"])
else:
Expand Down

0 comments on commit 76586d9

Please sign in to comment.