We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eba9638 commit fe3e4d9Copy full SHA for fe3e4d9
src/assignmenttool/__init__.py
@@ -150,6 +150,8 @@ def process(config):
150
raise AToolError(f'Could not find maximum score for task {task}')
151
record['score'] = row.Value
152
elif row.Type.upper() == 'COMMENT':
153
+ if pd.isna(row.Value):
154
+ continue # Ignore empty comments
155
# Check if this is a comment that applies to the entire sheet
156
if pd.isna(row.Task) and pd.isna(row.Subtask):
157
sheet_comments[row.Username].append(row.Value)
0 commit comments