Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Image Harvest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
aknecht2
Image Harvest
Commits
1f00072b
Commit
1f00072b
authored
9 years ago
by
aknecht2
Browse files
Options
Downloads
Patches
Plain Diff
Changed multiplication operator to a '.' instead of '*'
parent
cbeec1aa
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
ih/imgproc.py
+1
-1
1 addition, 1 deletion
ih/imgproc.py
ih/workflow.py
+0
-4
0 additions, 4 deletions
ih/workflow.py
with
1 addition
and
5 deletions
ih/imgproc.py
+
1
−
1
View file @
1f00072b
...
@@ -51,7 +51,7 @@ class ColorFilter(object):
...
@@ -51,7 +51,7 @@ class ColorFilter(object):
"
=
"
:
lambda
left
,
right
:
left
==
right
,
"
=
"
:
lambda
left
,
right
:
left
==
right
,
"
+
"
:
lambda
left
,
right
:
left
+
right
,
"
+
"
:
lambda
left
,
right
:
left
+
right
,
"
-
"
:
lambda
left
,
right
:
left
-
right
,
"
-
"
:
lambda
left
,
right
:
left
-
right
,
"
*
"
:
lambda
left
,
right
:
left
*
right
,
"
.
"
:
lambda
left
,
right
:
left
*
right
,
"
/
"
:
lambda
left
,
right
:
left
/
right
,
"
/
"
:
lambda
left
,
right
:
left
/
right
,
"
max
"
:
lambda
left
,
right
:
np
.
maximum
(
left
,
right
),
"
max
"
:
lambda
left
,
right
:
np
.
maximum
(
left
,
right
),
"
min
"
:
lambda
left
,
right
:
np
.
minimum
(
left
,
right
),
"
min
"
:
lambda
left
,
right
:
np
.
minimum
(
left
,
right
),
...
...
This diff is collapsed.
Click to expand it.
ih/workflow.py
+
0
−
4
View file @
1f00072b
...
@@ -149,10 +149,6 @@ class Workflow(object):
...
@@ -149,10 +149,6 @@ class Workflow(object):
elif
str
(
arguments
[
arg
])
in
outputs
:
elif
str
(
arguments
[
arg
])
in
outputs
:
arglist
.
append
(
outputs
[
str
(
arguments
[
arg
])][
"
file
"
])
arglist
.
append
(
outputs
[
str
(
arguments
[
arg
])][
"
file
"
])
else
:
else
:
if
"
osg
"
in
self
.
config
:
arglist
.
append
(
"'"
+
str
(
arguments
[
arg
]).
replace
(
"
*
"
,
"
\*
"
)
+
"'"
)
else
:
arglist
.
append
(
str
(
arguments
[
arg
])).
replace
(
"
*
"
,
"
\*
"
)
self
.
jobs
[
dax
][
jobname
].
addArguments
(
*
arglist
)
self
.
jobs
[
dax
][
jobname
].
addArguments
(
*
arglist
)
if
dependencies
:
if
dependencies
:
for
depend
in
dependencies
:
for
depend
in
dependencies
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment