Skip to content
Snippets Groups Projects
Commit 867150d8 authored by David Hammer's avatar David Hammer
Browse files

Reformat

parent 95bbab69
No related branches found
No related tags found
2 merge requests!74Refactor DetectorAssembler,!73Refactor stacking for reuse and overlappability
import collections
import concurrent.futures
import enum
import functools
import re
from karabo.bound import (
......@@ -38,6 +37,7 @@ def merge_schema():
.defaultValue(False)
.reconfigurable()
.commit(),
STRING_ELEMENT(schema)
.key("sourcePattern")
.displayedName("Source pattern")
......@@ -45,6 +45,7 @@ def merge_schema():
.defaultValue("")
.reconfigurable()
.commit(),
STRING_ELEMENT(schema)
.key("keyPattern")
.displayedName("Key pattern")
......@@ -52,6 +53,7 @@ def merge_schema():
.defaultValue("")
.reconfigurable()
.commit(),
STRING_ELEMENT(schema)
.key("replacement")
.displayedName("Replacement")
......@@ -59,6 +61,7 @@ def merge_schema():
.defaultValue("")
.reconfigurable()
.commit(),
STRING_ELEMENT(schema)
.key("groupType")
.displayedName("Group type")
......@@ -67,6 +70,7 @@ def merge_schema():
.defaultValue(GroupType.MULTISOURCE.value)
.reconfigurable()
.commit(),
STRING_ELEMENT(schema)
.key("mergeMethod")
.displayedName("Merge method")
......@@ -75,6 +79,7 @@ def merge_schema():
.defaultValue(MergeMethod.STACK.value)
.reconfigurable()
.commit(),
INT32_ELEMENT(schema)
.key("axis")
.displayedName("Axis")
......@@ -82,6 +87,7 @@ def merge_schema():
.defaultValue(0)
.reconfigurable()
.commit(),
STRING_ELEMENT(schema)
.key("missingValue")
.displayedName("Missing value default")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment