Skip to content

Commit

Permalink
More order
Browse files Browse the repository at this point in the history
  • Loading branch information
goerch committed Nov 10, 2023
1 parent 06b0957 commit 4481193
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_forms.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import os
import unittest

from flask import Flask
from flask_appbuilder import AppBuilder, Model, SQLA
from flask_appbuilder.forms import GeneralModelConverter
from flask_appbuilder.models.sqla.interface import SQLAInterface
from sqlalchemy import (
Boolean,
Column,
Expand All @@ -13,7 +17,6 @@
String,
Text,
)
from flask import Flask
from wtforms import (
BooleanField,
DateField,
Expand All @@ -24,9 +27,6 @@
StringField,
TextAreaField,
)
from flask_appbuilder import AppBuilder, Model, SQLA
from flask_appbuilder.forms import GeneralModelConverter
from flask_appbuilder.models.sqla.interface import SQLAInterface


class FieldsModel(Model):
Expand Down

0 comments on commit 4481193

Please sign in to comment.