diff --git a/UltiSnips/python.snippets b/UltiSnips/python.snippets index a5b0bef..b50dfca 100644 --- a/UltiSnips/python.snippets +++ b/UltiSnips/python.snippets @@ -17,3 +17,8 @@ endsnippet snippet lint "Start a lint-disable comment" # pylint:disable=${0:lint code} endsnippet + +snippet from "Import a module from another" +from ${1:source} import ${2:module} +$0 +endsnippet