Skip to content
This repository has been archived by the owner on May 27, 2022. It is now read-only.

Allow whitespace lines in cells. #23

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hy_kernel/hy_kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def do_execute(self, code, *args, **kwargs):
if line[:2] == "%%":
# cell magic
cell.append(line)
elif line[0] in "!%":
elif len(line) > 0 and line[0] in "!%":
# line magic
if chunk:
cell.append(self.compile_chunk(chunk))
Expand Down