Skip to content

Commit

Permalink
Fix E402 ruff lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jacomago committed Jan 10, 2025
1 parent 71c65ac commit bc70162
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions server/recceiver/cfstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import logging
import socket

_log = logging.getLogger(__name__)

from zope.interface import implementer

from requests import RequestException, ConnectionError
Expand All @@ -21,6 +19,7 @@
import json
from channelfinder import ChannelFinderClient

_log = logging.getLogger(__name__)

# ITRANSACTION FORMAT:
#
Expand Down
4 changes: 2 additions & 2 deletions server/recceiver/recast.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

import logging

_log = logging.getLogger(__name__)

import sys
import time

Expand All @@ -19,6 +17,8 @@

from .interfaces import ITransaction

_log = logging.getLogger(__name__)

_M = 0x5243

_Head = struct.Struct(">HHI")
Expand Down

0 comments on commit bc70162

Please sign in to comment.