mirror of
https://github.com/trailofbits/algo.git
synced 2025-09-05 19:43:22 +02:00
Fix Python linting issues in iptables test file
Fixed all ruff linting issues: - Removed unused yaml import - Fixed import sorting (pathlib before third-party imports) - Removed trailing whitespace from blank lines - Added newline at end of file All tests still pass after formatting fixes. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
c81665d422
commit
18c41da6ad
1 changed files with 16 additions and 16 deletions
|
@ -6,9 +6,9 @@ These tests verify that the iptables rules templates generate correct
|
|||
NAT rules for both WireGuard and IPsec VPN traffic.
|
||||
"""
|
||||
|
||||
import pytest
|
||||
import yaml
|
||||
from pathlib import Path
|
||||
|
||||
import pytest
|
||||
from jinja2 import Environment, FileSystemLoader
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue