Skip to content

Commit 6682046

Browse files
committed
linting
1 parent fd82d25 commit 6682046

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

labelbox/schema/model_run.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def update_config(self, config: Dict[str, Any]) -> Dict[str, Any]:
270270
config (dict): A dictionary of keys and values
271271
Returns:
272272
model run id and updated training metadata
273-
"""
273+
"""
274274
data: Dict[str, Any] = {'config': config}
275275
res = self.client.execute(
276276
"""mutation updateModelRunConfigPyApi($modelRunId: ID!, $data: UpdateModelRunConfigInput!){
@@ -289,7 +289,7 @@ def reset_config(self) -> Dict[str, Any]:
289289
Resets model run's training metadata config
290290
Returns:
291291
Model run id and reset training metadata
292-
"""
292+
"""
293293
res = self.client.execute(
294294
"""mutation resetModelRunConfigPyApi($modelRunId: ID!){
295295
resetModelRunConfig(modelRun: {id : $modelRunId}){trainingMetadata}
@@ -304,7 +304,7 @@ def get_config(self) -> Dict[str, Any]:
304304
Gets model run's training metadata
305305
Returns:
306306
training metadata as a dictionary
307-
"""
307+
"""
308308
res = self.client.execute("""query ModelRunPyApi($modelRunId: ID!){
309309
modelRun(where: {id : $modelRunId}){trainingMetadata}
310310
}

0 commit comments

Comments
 (0)