diff --git a/plugin/core/buffers.py b/plugin/core/buffers.py
index fd3db26..52dbdf4 100644
--- a/plugin/core/buffers.py
+++ b/plugin/core/buffers.py
@@ -146,7 +146,9 @@ class BufferRegistry():
         bid = bhandle.path()
     
         win = sublime.active_window()
-        newfileflags = sublime.NewFileFlags.TRANSIENT | sublime.NewFileFlags.ADD_TO_SELECTION | sublime.NewFileFlags.FORCE_CLONE
+        newfileflags = sublime.NewFileFlags.TRANSIENT \
+            | sublime.NewFileFlags.ADD_TO_SELECTION \
+            | sublime.NewFileFlags.FORCE_CLONE
         view = win.new_file(newfileflags)
 
 
@@ -173,6 +175,7 @@ class BufferRegistry():
         del self._buffers[bf]
 
 
+
 buffers = BufferRegistry()