Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: black linting #127

Merged
merged 1 commit into from
Feb 6, 2024
Merged
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
1 change: 1 addition & 0 deletions wgkex/common/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""A collection of general utilities."""

import ipaddress
import re

Expand Down
1 change: 1 addition & 0 deletions wgkex/config/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Configuration handling class."""

import dataclasses
import logging
import os
Expand Down
1 change: 1 addition & 0 deletions wgkex/config/config_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for configuration handling class."""

import unittest
import mock
import yaml
Expand Down
1 change: 1 addition & 0 deletions wgkex/worker/app_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Unit tests for app.py"""

import threading
from time import sleep
import unittest
Expand Down
1 change: 1 addition & 0 deletions wgkex/worker/mqtt_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Unit tests for mqtt.py"""

import socket
import threading
import unittest
Expand Down
1 change: 1 addition & 0 deletions wgkex/worker/netlink.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Functions related to netlink manipulation for Wireguard, IPRoute and FDB on Linux."""

# See https://docs.pyroute2.org/iproute.html for a documentation of the layout of netlink responses
import hashlib
import re
Expand Down
1 change: 1 addition & 0 deletions wgkex/worker/netlink_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Unit tests for netlink.py"""

import unittest
import mock
from datetime import timedelta
Expand Down
Loading