mirror of
https://github.com/curl/curl.git
synced 2026-08-25 10:33:31 +03:00
black formatting
This commit is contained in:
parent
d7333c2bed
commit
53336d9e0b
36 changed files with 4737 additions and 3515 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
#***************************************************************************
|
||||
# ***************************************************************************
|
||||
# _ _ ____ _
|
||||
# Project ___| | | | _ \| |
|
||||
# / __| | | | |_) | |
|
||||
|
|
@ -46,11 +46,13 @@ async def run_server(port):
|
|||
|
||||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser(prog='scorecard', description="""
|
||||
parser = argparse.ArgumentParser(
|
||||
prog="scorecard",
|
||||
description="""
|
||||
Run a websocket echo server.
|
||||
""")
|
||||
parser.add_argument("--port", type=int,
|
||||
default=9876, help="port to listen on")
|
||||
""",
|
||||
)
|
||||
parser.add_argument("--port", type=int, default=9876, help="port to listen on")
|
||||
args = parser.parse_args()
|
||||
|
||||
logging.basicConfig(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue