Skip to content

Commit c7a2e78

Browse files
committed
style: 🚨 Formatting for black
1 parent 62d3d8b commit c7a2e78

File tree

24 files changed

+25
-0
lines changed

24 files changed

+25
-0
lines changed

diffsync/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
"""
17+
1718
import sys
1819
from inspect import isclass
1920
from typing import (

diffsync/exceptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
"""
17+
1718
from typing import TYPE_CHECKING, Union, Any
1819

1920
if TYPE_CHECKING:

diffsync/helpers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
"""
17+
1718
from collections.abc import Iterable as ABCIterable, Mapping as ABCMapping
1819
from typing import Callable, List, Optional, Tuple, Type, TYPE_CHECKING, Dict, Iterable
1920

diffsync/store/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""BaseStore module."""
2+
23
from typing import Dict, List, Tuple, Type, Union, TYPE_CHECKING, Optional, Set, Any
34
import structlog # type: ignore
45

diffsync/store/redis.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""RedisStore module."""
2+
23
import copy
34
import uuid
45
from pickle import loads, dumps # nosec

diffsync/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
"""
17+
1718
from collections import OrderedDict
1819
from typing import Iterator, List, Dict, Optional, TypeVar, Callable, Generic
1920

examples/01-multiple-data-sources/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
"""
17+
1718
from typing import List, Optional
1819
from diffsync import DiffSyncModel
1920

examples/03-remote-system/diff.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Custom Diff class for DiffSync to influence the behavior of the core Engine."""
2+
23
from diffsync.diff import Diff
34

45

examples/03-remote-system/local_adapter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""DiffSync adapter to load data from a local file."""
2+
23
import json
34

45
from slugify import slugify # pylint: disable=import-error

examples/03-remote-system/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Main DiffSync models for example3."""
2+
23
from typing import List, Optional
34
from diffsync import DiffSyncModel
45

0 commit comments

Comments
 (0)