Skip to content

Commit d4731e4

Browse files
authored
Merge pull request #411 change operation status from bitmask to enum
2 parents c63687c + 8b12b04 commit d4731e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/operation/status.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type Status uint8
77

88
// Binary flags that used as Status
99
const (
10-
Finished = Status(1 << iota >> 1)
10+
Finished = Status(iota)
1111
Undefined // may be true or may be false
1212
NotFinished
1313
)

0 commit comments

Comments
 (0)