mirror of
https://github.com/pablorevilla-meshtastic/meshview.git
synced 2026-03-04 23:27:46 +01:00
Configure Ruff as the code formatter and linter with pre-commit hooks. Applied automatic formatting fixes across the entire codebase including: - Import sorting and organization - Code style consistency (spacing, line breaks, indentation) - String quote normalization - Removal of trailing whitespace and unnecessary blank lines
13 lines
197 B
Python
13 lines
197 B
Python
import asyncio
|
|
|
|
from meshview import web
|
|
|
|
|
|
async def main():
|
|
async with asyncio.TaskGroup() as tg:
|
|
tg.create_task(web.run_server())
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|