Skip to content

Commit 5ddb2fd

Browse files
committed
Fixed name of function
1 parent 38b341b commit 5ddb2fd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ You can easily customize your own configurations from the set of features that S
8484

8585
## Version
8686
```
87-
4.7.5.12.7
87+
4.7.5.12.8
8888
```
8989

9090
## RML-Test Cases

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.7.5.12.7
1+
4.7.5.12.8

rdfizer/rdfizer/fnml_functions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ def string_md5():
8585
return hashlib.md5(str(global_dic["valueParameter"]).encode()).hexdigest()
8686

8787
def controls_if():
88-
if bool(global_dic["param_b"]):
89-
return str(global_dic["param_true"])
88+
if bool(global_dic["bool_b"]):
89+
return str(global_dic["any_true"])
9090
else:
91-
return str(global_dic["param_false"])
91+
return str(global_dic["any_false"])
9292

9393
def array_join():
9494
output = ""

0 commit comments

Comments
 (0)