Skip to content

Commit

Permalink
Merge pull request #123 from FAIRDataPipeline/hotfix/no-commas-in-enum
Browse files Browse the repository at this point in the history
Remove commas from CMD_MODE enum
  • Loading branch information
kzscisoft committed Nov 18, 2021
2 parents 899c849 + 94c6914 commit cd399e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fair/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
JOBS_DIR = "jobs"

class CMD_MODE(enum.Enum):
RUN = 1,
PULL = 2,
PUSH = 3,
RUN = 1
PULL = 2
PUSH = 3
PASS = 4


Expand Down

0 comments on commit cd399e3

Please sign in to comment.