You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Job must have start_time_timestamp, finish_time_timestamp, parameters ['EXPERIMENT']['CHUNKSIZE'] and parameters ['EXPERIMENT']['CHUNKSIZEUNIT'] set."
raiseValueError("Job must have start_time_timestamp, finish_time_timestamp, parameters ['EXPERIMENT']['CHUNKSIZE'] and parameters ['EXPERIMENT']['CHUNKSIZEUNIT'] set.")
60
51
61
52
ifnotisinstance(start_timestamp, int):
62
-
raiseTypeError(
63
-
"start_timestamp must be an integer representing Unix timestamp."
64
-
)
53
+
raiseTypeError("start_timestamp must be an integer representing Unix timestamp.")
65
54
66
55
ifnotisinstance(finish_timestamp, int):
67
-
raiseTypeError(
68
-
"finish_timestamp must be an integer representing Unix timestamp."
69
-
)
56
+
raiseTypeError("finish_timestamp must be an integer representing Unix timestamp.")
70
57
71
58
ifnotisinstance(chunk_size, str):
72
-
raiseTypeError(
73
-
"chunk_size must be a string representing the size of the chunk (e.g., '12')."
74
-
)
59
+
raiseTypeError("chunk_size must be a string representing the size of the chunk (e.g., '12').")
75
60
76
61
ifnotisinstance(chunk_size_unit, str):
77
-
raiseTypeError(
78
-
"chunk_size_unit must be a string representing the unit of the chunk size (e.g., 'month')."
79
-
)
62
+
raiseTypeError("chunk_size_unit must be a string representing the unit of the chunk size (e.g., 'month').")
80
63
81
64
ifnotchunk_size.isdigit() orint(chunk_size) <=0:
82
-
raiseValueError(
83
-
"chunk_size must be a positive numeric string (e.g., '12')."
84
-
)
65
+
raiseValueError("chunk_size must be a positive numeric string (e.g., '12').")
0 commit comments