Skip to content

Commit 1d0aefb

Browse files
committed
Generate for python3.12 and format
1 parent 03ad5d1 commit 1d0aefb

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/flaskapp/database/models.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"""
55

66
from datetime import datetime
7-
from typing import List
87

98
from flask_migrate import Migrate
109
from flask_sqlalchemy import SQLAlchemy
@@ -59,7 +58,7 @@ class TestCase(db.Model):
5958
id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)
6059
name: Mapped[str] = mapped_column(String(255), nullable=False)
6160
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")
6362

6463
def __init__(self, name, description):
6564
self.name = name
@@ -85,7 +84,7 @@ class Asset(db.Model):
8584

8685
id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)
8786
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")
8988

9089
def __init__(self, name):
9190
self.name = name

src/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.10
2+
# This file is autogenerated by pip-compile with Python 3.12
33
# by the following command:
44
#
55
# pip-compile --output-file=requirements.txt pyproject.toml

0 commit comments

Comments
 (0)