Skip to content

Commit

Permalink
chore: update pins and re-blacken
Browse files Browse the repository at this point in the history
  • Loading branch information
carlmontanari committed Apr 9, 2024
1 parent 4a01031 commit 344f07a
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/generate.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Generate the code reference pages and navigation."""

from pathlib import Path

import mkdocs_gen_files
Expand Down
1 change: 1 addition & 0 deletions examples/simple_test_case/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""scrapli_replay.examples.simple_test_case.conftest"""

import pytest
from example import Example

Expand Down
1 change: 1 addition & 0 deletions examples/simple_test_case/example.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""scrapli_replay.examples.simple_test_case.example"""

import re

from scrapli import Scrapli
Expand Down
1 change: 1 addition & 0 deletions examples/simple_test_case/test_example.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""scrapli_replay.examples.simple_test_case.test_example"""

import pytest
from example import Example

Expand Down
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""scrapli_replay.noxfile"""

import re
import sys
from pathlib import Path
Expand Down
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
black>=23.3.0,<24.0.0
black>=23.3.0,<25.0.0
darglint>=1.8.1,<2.0.0
isort>=5.10.1,<6.0.0
mypy>=1.4.1,<2.0.0
nox==2023.4.22
nox==2024.3.2
pycodestyle>=2.8.0,<3.0.0
pydocstyle>=6.1.1,<7.0.0
pyfakefs>=5.0.0,<6.0.0
pyfakefs>=5.0.0,<5.4.0
pylama>=8.4.0,<9.0.0
pylint>=3.0.0,<4.0.0
pytest-asyncio>=0.17.0,<1.0.0
Expand Down
1 change: 1 addition & 0 deletions scrapli_replay/logging.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""scrapli_replay.logging"""

# slightly irritating renaming to prevent a cyclic lookup in griffe for mkdocstrings
from logging import Formatter as Formatter_
from logging import LogRecord as LogRecord_
Expand Down
1 change: 1 addition & 0 deletions scrapli_replay/replay/pytest_scrapli_replay.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""scrapli_replay.pytest.scrapli_replay"""

from pathlib import Path
from typing import Any, AsyncIterator, Iterator, List, Tuple

Expand Down
1 change: 1 addition & 0 deletions scrapli_replay/replay/replay.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""scrapli_replay.replay.replay"""

# pylint: disable=C0302
import asyncio
import re
Expand Down
1 change: 1 addition & 0 deletions scrapli_replay/server/collector.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""scrapli_replay.server.collector"""

from copy import copy
from dataclasses import asdict, dataclass
from io import BytesIO
Expand Down
1 change: 1 addition & 0 deletions scrapli_replay/server/server.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""scrapli_replay.server.server"""

import asyncio
from enum import Enum
from typing import Any, Dict, Optional, Type
Expand Down

0 comments on commit 344f07a

Please sign in to comment.