Skip to content

Commit

Permalink
style: apply new black formatting rules
Browse files Browse the repository at this point in the history
  • Loading branch information
kpetremann committed Oct 1, 2024
1 parent f3e719e commit 4b5954b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions netprobify/common.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Common functions."""

import re

from socket import getaddrinfo, AF_INET, AF_INET6, IPPROTO_TCP
Expand Down
1 change: 1 addition & 0 deletions netprobify/external.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Module for all external functions."""

import math


Expand Down
1 change: 1 addition & 0 deletions netprobify/protocol/common/protocols.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Protocol related functions."""

from ipaddress import ip_network

from scapy.all import ICMP, IP, ICMPv6EchoRequest, IPv6
Expand Down
1 change: 1 addition & 0 deletions netprobify/protocol/icmp_ping.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Module for ICMP probing."""

import logging
from random import randint

Expand Down
1 change: 1 addition & 0 deletions netprobify/protocol/iperf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Module for Iperf bandwidth test."""

import logging
import subprocess

Expand Down
1 change: 1 addition & 0 deletions netprobify/protocol/tcpsyn.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Module for TCP syn probing."""

import logging

from scapy.all import TCP, L3RawSocket, RandString, Raw, conf, send, sr
Expand Down
1 change: 1 addition & 0 deletions netprobify/protocol/udp_unreachable.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Module for UDP probing."""

import logging

from scapy.all import UDP, L3RawSocket, RandString, Raw, UDPerror, conf, sr
Expand Down

0 comments on commit 4b5954b

Please sign in to comment.