diff options
| author | erdgeist <erdgeist@erdgeist.org> | 2025-01-04 02:45:08 +0100 | 
|---|---|---|
| committer | erdgeist <erdgeist@erdgeist.org> | 2025-01-04 02:45:08 +0100 | 
| commit | ab32e563be8d99010245fc546817c5a2526d7b09 (patch) | |
| tree | e0d08b09a2762b766e9b5415655c5bbfac16d21e | |
| parent | b2a7480d583198e250f5400db0e4b5f3543220d4 (diff) | |
Add missing imports
| -rw-r--r-- | fullnarp.py | 10 | 
1 files changed, 8 insertions, 2 deletions
| diff --git a/fullnarp.py b/fullnarp.py index 7c98785..6a02b6e 100644 --- a/fullnarp.py +++ b/fullnarp.py | |||
| @@ -1,9 +1,15 @@ | |||
| 1 | import asyncio | 1 | from os import listdir | 
| 2 | from argparse import ArgumentParser | ||
| 2 | import json | 3 | import json | 
| 4 | import asyncio | ||
| 5 | |||
| 3 | import websockets | 6 | import websockets | 
| 4 | from os import listdir | ||
| 5 | from websockets.exceptions import ConnectionClosedOK | 7 | from websockets.exceptions import ConnectionClosedOK | 
| 6 | 8 | ||
| 9 | from sqlalchemy import Column, String, create_engine | ||
| 10 | from sqlalchemy.orm import sessionmaker, declarative_base | ||
| 11 | |||
| 12 | |||
| 7 | """ | 13 | """ | 
| 8 | This is best served by an nginx block that should look a bit like this: | 14 | This is best served by an nginx block that should look a bit like this: | 
| 9 | 15 | ||
