We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e5f056 commit eec4caaCopy full SHA for eec4caa
js/actions/NavActions.js
@@ -55,7 +55,7 @@ var NavActions = {
55
AppDispatcher.dispatch({
56
actionType: OPConstants.SET_ATTRIBUTE,
57
key: key,
58
- value, value
+ value: value
59
});
60
}
61
scripts/coptic_unicode_converter.py
@@ -31,7 +31,6 @@ def main():
31
ap = argparse.ArgumentParser()
32
ap.add_argument("-string", required=False)
33
args = vars(ap.parse_args())
34
- print(args)
35
36
# make sure character mappings are equal in length
37
assert(len(ascii_coptic) == len(unicode_coptic))
@@ -42,7 +41,7 @@ def main():
42
41
mapping[a] = chr(b)
43
44
45
- if len(args) > 0:
+ if args["string"]:
46
text = args["string"]
47
print("".join(replace(mapping, list(text))))
48
return
0 commit comments