Python APSO change defaut file lines? calc

Writing macros in python (Calc):

In the APSO v.1.2.5 extension when I create a new module and then in this module I go to Menu → Edit, it opens a file with two default lines:

# -*- coding: utf-8 -*-
from __future__ import unicode_literals

it would be possible to change something in APSO to change these lines to:

# -*- coding: cp1252 -*-
from __future__ import unicode_literals
import uno

You need change line 60 in apso.py file.

# Default content of any new module.
TEMPLATE = """# -*- coding: utf-8 -*-
from __future__ import unicode_literals

"""

You can used this function for get this path

from apso_utils import msgbox

def get_path():
    ctx = XSCRIPTCONTEXT.getComponentContext()
    pip = ctx.getValueByName('/singletons/com.sun.star.deployment.PackageInformationProvider')
    path = pip.getPackageLocation('apso.python.script.organizer')
    msgbox(path+ '/python/apso.py')
    return

Thanks it worked here for me