Skip to content

Commit 38b341b

Browse files
committed
Fixed name of function
1 parent 254f185 commit 38b341b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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.6
87+
4.7.5.12.7
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.6
1+
4.7.5.12.7

rdfizer/rdfizer/fnml_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"replaceValue":"","concat2":"","uuid":"","helloworld":"",
1919
"escape":"","schema":"","string_replace":"",
2020
"parseURL":"","random":"","length":"","string_substring":"",
21-
"array_join":"","control_if":"","string_md5":"","string_contains":"",
21+
"array_join":"","controls_if":"","string_md5":"","string_contains":"",
2222
"string_replace":"","slugify":"","trueCondition":"","isNull":"",
2323
"notEqual":"","equal":"","normalizeDateTime":"","normalizeDate":"",
2424
"listContainsElement":""}
@@ -84,7 +84,7 @@ def string_md5():
8484
import hashlib
8585
return hashlib.md5(str(global_dic["valueParameter"]).encode()).hexdigest()
8686

87-
def control_if():
87+
def controls_if():
8888
if bool(global_dic["param_b"]):
8989
return str(global_dic["param_true"])
9090
else:

0 commit comments

Comments
 (0)