Skip to content
Open
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repos:
#

- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.24.1
rev: v0.25
hooks:
- id: validate-pyproject
fail_fast: true
Expand Down Expand Up @@ -43,7 +43,7 @@ repos:
#

- repo: https://github.com/asottile/setup-cfg-fmt
rev: v3.1.0
rev: v3.2.0
hooks:
- id: setup-cfg-fmt

Expand All @@ -66,7 +66,7 @@ repos:

# Last modifier: Coding Standard
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.12.0
rev: 26.5.1
hooks:
- id: black

Expand Down
2 changes: 0 additions & 2 deletions archr/analyzers/bintrace_qemu_tracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

from io import BytesIO


l = logging.getLogger(__file__)

from . import ContextAnalyzer
Expand All @@ -22,7 +21,6 @@

from ..utils import filter_strace_output, get_file_maps


try:
have_bintrace_qemu = importlib.import_module("bintrace-qemu")
except ModuleNotFoundError:
Expand Down
1 change: 0 additions & 1 deletion archr/analyzers/qemu_tracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

from io import BytesIO


l = logging.getLogger("archr.analyzers.qemu_tracer")

from . import ContextAnalyzer
Expand Down
1 change: 0 additions & 1 deletion archr/analyzers/tcpdump.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

from . import ContextAnalyzer


l = logging.getLogger("archr.analyzers.tcpdump")


Expand Down
1 change: 0 additions & 1 deletion archr/strace_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
from ply import lex
from ply import yacc


l = logging.getLogger("archr.strace_parser")

tokens = (
Expand Down
1 change: 0 additions & 1 deletion archr/targets/docker_target.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from docker.errors import APIError
from ..errors import ArchrValueError


docker = None

l = logging.getLogger("archr.target.docker_target")
Expand Down
1 change: 0 additions & 1 deletion archr/targets/flight.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from .actions import OpenChannelAction


l = logging.getLogger("archr.target.flight")


Expand Down
Loading