[refactor] style checker compliace

This commit is contained in:
Coli Alessandro 2025-03-06 16:51:16 +01:00
parent 3ebf8537c2
commit 35f610e0a5
2 changed files with 2 additions and 1 deletions

View File

@ -251,7 +251,7 @@ content_types.add_argument(
default=False, default=False,
short_help="Parse and send an HTTP request from a .http file", short_help="Parse and send an HTTP request from a .http file",
help=""" help="""
Parse and send an HTTP request from a file in .http format. Parse and send an HTTP request from a file in .http format.
The file should contain a valid HTTP request with headers and body. The file should contain a valid HTTP request with headers and body.
If this is specified, URL will be treated as a file path. If this is specified, URL will be treated as a file path.
""", """,

View File

@ -2,6 +2,7 @@ from __future__ import annotations
from dataclasses import dataclass from dataclasses import dataclass
import re import re
@dataclass @dataclass
class HttpFileRequest: class HttpFileRequest:
method: str method: str