Skip to content

Commit

Permalink
fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
tito committed Apr 5, 2023
1 parent b355388 commit 2b484af
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ void load_custom_builtin_importer() {
" self.buffer = ""\n" \
" def write(self, chunk):\n" \
" self.buffer += chunk\n" \
" if "\n" in self.buffer:\n" \
" lines = self.buffer.split("\n")\n" \
" if '\n' in self.buffer:\n" \
" lines = self.buffer.split('\n')\n" \
" for line in lines[:-1]:\n" \
" nslog(line)\n" \
" self.buffer = lines[-1]\n" \
Expand Down

0 comments on commit 2b484af

Please sign in to comment.