Skip to content
This repository was archived by the owner on Oct 30, 2018. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions syncano_cli/parse_to_syncano/migrations/relation.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# -*- coding: utf-8 -*-
# a relation helper
from parse_to_syncano.config import PARSE_PAGINATION_LIMIT
from parse_to_syncano.migrations.aggregation import data_aggregate
from parse_to_syncano.migrations.mixins import PaginationMixin, ParseConnectionMixin
from parse_to_syncano.processors.klass import ClassProcessor
from syncano.models import Object
from syncano_cli import LOG
from syncano_cli.parse_to_syncano.config import PARSE_PAGINATION_LIMIT
from syncano_cli.parse_to_syncano.migrations.aggregation import data_aggregate
from syncano_cli.parse_to_syncano.migrations.mixins import PaginationMixin, ParseConnectionMixin
from syncano_cli.parse_to_syncano.processors.klass import ClassProcessor


class ClassRelationProcessor(ParseConnectionMixin, PaginationMixin):
Expand Down
10 changes: 5 additions & 5 deletions syncano_cli/parse_to_syncano/migrations/transfer.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# -*- coding: utf-8 -*-
import time

from parse_to_syncano.config import PARSE_PAGINATION_LIMIT, config
from parse_to_syncano.migrations.aggregation import data_aggregate
from parse_to_syncano.migrations.mixins import PaginationMixin, ParseConnectionMixin, SyncanoConnectionMixin
from parse_to_syncano.migrations.relation import RelationProcessor
from parse_to_syncano.processors.klass import ClassProcessor
from syncano.models import Object
from syncano_cli import LOG
from syncano_cli.parse_to_syncano.config import PARSE_PAGINATION_LIMIT, config
from syncano_cli.parse_to_syncano.migrations.aggregation import data_aggregate
from syncano_cli.parse_to_syncano.migrations.mixins import PaginationMixin, ParseConnectionMixin, SyncanoConnectionMixin
from syncano_cli.parse_to_syncano.migrations.relation import RelationProcessor
from syncano_cli.parse_to_syncano.processors.klass import ClassProcessor


class SyncanoTransfer(ParseConnectionMixin, SyncanoConnectionMixin, PaginationMixin):
Expand Down
2 changes: 1 addition & 1 deletion syncano_cli/sync/scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import os
import re
from collections import defaultdict
from syncano.exceptions import SyncanoRequestError

from syncano.exceptions import SyncanoRequestError
from syncano_cli import LOG

ALLOWED_RUNTIMES = {
Expand Down