mirror of
https://github.com/clearml/clearml
synced 2025-03-03 18:52:12 +00:00
Flake8
This commit is contained in:
parent
c8a690569f
commit
661fac95a2
@ -1,7 +1,6 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import abc
|
import abc
|
||||||
import os
|
|
||||||
import types
|
import types
|
||||||
from argparse import Namespace
|
from argparse import Namespace
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
|
@ -668,7 +668,7 @@ class Task(IdObjectBase, AccessMixin, SetupUploadMixin):
|
|||||||
else:
|
else:
|
||||||
failures.append("model id: {}".format(m.id))
|
failures.append("model id: {}".format(m.id))
|
||||||
continue
|
continue
|
||||||
except Exception as ex:
|
except Exception:
|
||||||
failures.append("model id: {}".format(m.id))
|
failures.append("model id: {}".format(m.id))
|
||||||
continue
|
continue
|
||||||
if should_delete and not self._delete_uri(m.uri):
|
if should_delete and not self._delete_uri(m.uri):
|
||||||
@ -2150,4 +2150,3 @@ class Task(IdObjectBase, AccessMixin, SetupUploadMixin):
|
|||||||
return all_tasks[0].status, all_tasks[0].status_message
|
return all_tasks[0].status, all_tasks[0].status_message
|
||||||
except Exception:
|
except Exception:
|
||||||
return None, None
|
return None, None
|
||||||
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
|
|
@ -1 +0,0 @@
|
|||||||
|
|
@ -1 +0,0 @@
|
|||||||
|
|
@ -1 +0,0 @@
|
|||||||
|
|
@ -1,9 +1,7 @@
|
|||||||
from argparse import ArgumentParser
|
from argparse import ArgumentParser
|
||||||
|
|
||||||
from pathlib2 import Path
|
|
||||||
|
|
||||||
from clearml.backend_interface.task.populate import CreateAndPopulate
|
|
||||||
from clearml import Task
|
from clearml import Task
|
||||||
|
from clearml.backend_interface.task.populate import CreateAndPopulate
|
||||||
|
|
||||||
|
|
||||||
def setup_parser(parser):
|
def setup_parser(parser):
|
||||||
|
Loading…
Reference in New Issue
Block a user