You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by hu...@apache.org on 2023/05/17 04:17:48 UTC

[plc4x] branch develop updated: feat(plc4py): Missed a change

This is an automated email from the ASF dual-hosted git repository.

hutcheb pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new c447eb580e feat(plc4py): Missed a change
c447eb580e is described below

commit c447eb580eb4860138c83364f34a957b22414913
Author: Ben Hutcheson <be...@gmail.com>
AuthorDate: Wed May 17 06:12:41 2023 +0200

    feat(plc4py): Missed a change
---
 .../java/org/apache/plc4x/language/python/PythonLanguageOutput.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/code-generation/language-python/src/main/java/org/apache/plc4x/language/python/PythonLanguageOutput.java b/code-generation/language-python/src/main/java/org/apache/plc4x/language/python/PythonLanguageOutput.java
index c7e1c0be30..fa187f2fd8 100644
--- a/code-generation/language-python/src/main/java/org/apache/plc4x/language/python/PythonLanguageOutput.java
+++ b/code-generation/language-python/src/main/java/org/apache/plc4x/language/python/PythonLanguageOutput.java
@@ -69,7 +69,7 @@ public class PythonLanguageOutput extends FreemarkerLanguageOutput {
     @Override
     protected FreemarkerLanguageTemplateHelper getHelper(TypeDefinition thisType, String protocolName, String flavorName, Map<String, TypeDefinition> types,
                                                          Map<String, String> options) {
-        return new PythonLanguageTemplateHelper(thisType, protocolName, flavorName, types, options);
+        return new PythonLanguageTemplateHelper(thisType, protocolName, flavorName, types);
     }
 
 }