Skip to content

Commit d474230

Browse files
Merge pull request #196 from ACRIOS-Systems/feature/remove_unused_module_imports
Remove redundant module imports
2 parents beeb01d + 120b0e1 commit d474230

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

erpcgen/src/templates/py_common.template

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
# AUTOGENERATED - DO NOT EDIT
99
#
1010

11-
import erpc
1211
{% for inc in includes %}
1312
import {$inc}
1413
{% endfor -- includes %}
@@ -117,7 +116,7 @@ class {$s.name}(object):
117116

118117
def __repr__(self):
119118
return self.__str__()
120-
119+
121120
{% endfor -- group.symbolsMap.structs %}
122121
{% endif -- not empty(group.symbolsMap.structs) %}
123122
{% if not empty(group.symbolsMap.unions) %}

erpcgen/src/templates/py_interface.template

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
# AUTOGENERATED - DO NOT EDIT
99
#
1010

11-
import erpc
12-
1311
{% for iface in group.interfaces if iface.isNonExternalInterface == true %}
1412
{% if iface.mlComment %}
1513
{$iface.mlComment}

0 commit comments

Comments
 (0)