Files
sublime-tryton-snippets/py_import_model.sublime-snippet
2023-01-20 15:25:20 +01:00

10 lines
404 B
XML

<snippet>
<content><![CDATA[
from trytond.model import Model, ModelSQL, ModelView, Workflow, fields
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>tryton_import_model</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.python</scope>
<description>Tryton: model classes import</description>
</snippet>