File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 4
4
"""
5
5
6
6
from datetime import datetime
7
- from typing import List
8
7
9
8
from flask_migrate import Migrate
10
9
from flask_sqlalchemy import SQLAlchemy
@@ -59,7 +58,7 @@ class TestCase(db.Model):
59
58
id : Mapped [int ] = mapped_column (primary_key = True , autoincrement = True )
60
59
name : Mapped [str ] = mapped_column (String (255 ), nullable = False )
61
60
description : Mapped [str ] = mapped_column (String (500 ), nullable = True )
62
- executions : Mapped [List ["Execution" ]] = relationship ("Execution" , back_populates = "test_case" )
61
+ executions : Mapped [list ["Execution" ]] = relationship ("Execution" , back_populates = "test_case" )
63
62
64
63
def __init__ (self , name , description ):
65
64
self .name = name
@@ -85,7 +84,7 @@ class Asset(db.Model):
85
84
86
85
id : Mapped [int ] = mapped_column (primary_key = True , autoincrement = True )
87
86
name : Mapped [str ] = mapped_column (String (255 ), nullable = False )
88
- executions : Mapped [List ["Execution" ]] = relationship ("Execution" , back_populates = "asset" )
87
+ executions : Mapped [list ["Execution" ]] = relationship ("Execution" , back_populates = "asset" )
89
88
90
89
def __init__ (self , name ):
91
90
self .name = name
Original file line number Diff line number Diff line change 1
1
#
2
- # This file is autogenerated by pip-compile with Python 3.10
2
+ # This file is autogenerated by pip-compile with Python 3.12
3
3
# by the following command:
4
4
#
5
5
# pip-compile --output-file=requirements.txt pyproject.toml
You can’t perform that action at this time.
0 commit comments