更改包路径

This commit is contained in:
MarkusJoe
2022-02-19 11:27:13 +08:00
parent fcb4c41f8e
commit 8c89f4a024
8 files changed
+33 -34

No files matched your search

+1 -1
View File
@@ -9,7 +9,7 @@
from typing import Optional
from flask import jsonify
from flask import Response
from db.sqlite import (update_data, fetch_table)
from bin.db import (update_data, fetch_table)
class ErrorProcess:
+2 -3
View File
@@ -6,10 +6,9 @@
# @File Name: view.py
import sqlite3
from flask import render_template
from db.sqlite import fetch_style_data
from db.sqlite import fetch_table
from bin.db import fetch_style_data
from bin.db import fetch_table
def view_template(style: str, length: int, name: str, count: str) -> str or tuple[bool, str]: