mirror of
https://github.com/venthur/blag.git
synced 2025-11-26 05:02:58 +00:00
Re-formatted the code
This commit is contained in:
@@ -91,8 +91,10 @@ def serve(args: argparse.Namespace) -> None:
|
||||
contains the input-, template- and static dir
|
||||
|
||||
"""
|
||||
httpd = HTTPServer(('', 8000), partial(SimpleHTTPRequestHandler,
|
||||
directory=args.output_dir))
|
||||
httpd = HTTPServer(
|
||||
('', 8000),
|
||||
partial(SimpleHTTPRequestHandler, directory=args.output_dir),
|
||||
)
|
||||
proc = multiprocessing.Process(target=autoreload, args=(args,))
|
||||
proc.start()
|
||||
logger.info("\n\n Devserver Started -- visit http://localhost:8000\n")
|
||||
|
||||
Reference in New Issue
Block a user