Skip to content

Commit e47dd69

Browse files
committed
fix import error for pylint in example3
1 parent efd36a7 commit e47dd69

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/example3/local_adapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""DiffSync adapter to load data from a local file."""
22
import json
33

4-
from slugify import slugify
4+
from slugify import slugify # pylint: disable=import-error
55

66
from models import Region, Country
77
from diffsync import DiffSync

examples/example3/nautobot_adapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""DiffSync Adapter for Nautobot to manage regions."""
22
import os
3-
import pynautobot
3+
import pynautobot # pylint: disable=import-error
44

55
from nautobot_models import NautobotCountry, NautobotRegion
66

examples/example3/nautobot_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Extension of the Base model for the Nautobot DiffSync Adapter to manage the CRUD operations."""
2-
import pynautobot
2+
import pynautobot # pylint: disable=import-error
33

44
from models import Region, Country
55

0 commit comments

Comments
 (0)