Skip to content

Commit d62cb87

Browse files
authored
Merge pull request #628 from netbox-community/jeffg/issue-627-linter-errors
Fix linter errors Fixes #627
2 parents 9dc54a9 + f0e8e93 commit d62cb87

13 files changed

+13
-1
lines changed

.github/workflows/py3.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
python: ["3.8", "3.9", "3.10", "3.11"]
16-
netbox: ["3.3", "3.4", "3.5", "3.6", "3.7"]
16+
netbox: ["3.4", "3.5", "3.6", "3.7"]
1717

1818
steps:
1919
- uses: actions/checkout@v4

pynetbox/core/api.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16+
1617
import requests
1718

1819
from pynetbox.core.query import Request

pynetbox/core/app.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16+
1617
from pynetbox.core.endpoint import Endpoint
1718
from pynetbox.core.query import Request
1819
from pynetbox.models import (

pynetbox/core/endpoint.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16+
1617
from pynetbox.core.query import Request, RequestError
1718
from pynetbox.core.response import Record, RecordSet
1819

pynetbox/core/query.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16+
1617
import concurrent.futures as cf
1718
import json
1819
from packaging import version

pynetbox/core/response.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16+
1617
import copy
1718
from collections import OrderedDict
1819

pynetbox/models/circuits.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16+
1617
from pynetbox.core.response import Record
1718

1819

pynetbox/models/dcim.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16+
1617
from urllib.parse import urlsplit
1718

1819
from pynetbox.core.query import Request

pynetbox/models/extras.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16+
1617
from pynetbox.core.response import Record, JsonField
1718

1819

pynetbox/models/ipam.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16+
1617
from pynetbox.core.response import Record
1718
from pynetbox.core.endpoint import DetailEndpoint
1819

pynetbox/models/users.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16+
1617
from pynetbox.core.response import Record, JsonField
1718

1819

pynetbox/models/virtualization.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16+
1617
from pynetbox.core.response import Record, JsonField
1718
from pynetbox.models.ipam import IpAddresses
1819

pynetbox/models/wireless.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16+
1617
from pynetbox.core.response import Record
1718

1819

0 commit comments

Comments
 (0)