Skip to content

Commit

Permalink
Adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
laistdomiciano committed Sep 12, 2024
1 parent 128812e commit 37c64c4
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
Binary file added backend/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file added backend/app/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file modified backend/app/__pycache__/backend_app.cpython-38.pyc
Binary file not shown.
Binary file modified backend/app/__pycache__/conftest.cpython-38-pytest-8.3.2.pyc
Binary file not shown.
Binary file modified backend/app/__pycache__/routes.cpython-38.pyc
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions backend/app/backend_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from flask import Flask
from flask_migrate import Migrate
from flask_jwt_extended import JWTManager
from .routes import routes
from .models import db, User
from routes import routes
from models import db, User
from flask_cors import CORS

DB_NAME = 'mygeneratordb'
Expand Down
4 changes: 2 additions & 2 deletions backend/app/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from flask_jwt_extended import create_access_token, jwt_required, get_jwt_identity
from sqlalchemy.exc import IntegrityError, SQLAlchemyError
from werkzeug.security import generate_password_hash, check_password_hash
from .models import User, Employee, ContractType, FinalContract, db
from .utils import generate_pdf, upload_to_s3
from models import User, Employee, ContractType, FinalContract, db
from utils import generate_pdf, upload_to_s3
import os
import uuid

Expand Down

0 comments on commit 37c64c4

Please sign in to comment.