Skip to content

Commit abb6ad1

Browse files
committed
Add missing space in 'attach' function
1 parent 5a8713a commit abb6ad1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neovim/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def attach(session_type, address=None, port=None, path=None, argv=None):
8585
session = (tcp_session(address, port) if session_type == 'tcp' else
8686
socket_session(path) if session_type == 'socket' else
8787
stdio_session() if session_type == 'stdio' else
88-
child_session(argv) if session_type == 'child'else
88+
child_session(argv) if session_type == 'child' else
8989
None)
9090

9191
if not session:

0 commit comments

Comments
 (0)