Skip to content

Commit

Permalink
ruff fix removed views import
Browse files Browse the repository at this point in the history
  • Loading branch information
Skyler84 committed Feb 26, 2024
1 parent 6898c15 commit de4125f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions challenge/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
app = Flask(__name__)
# app.config.from_object('config')

from challenge import views # noqa: F401 E402
2 changes: 1 addition & 1 deletion challenge/templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />
</head>
<body>
<div id="content">
<div id="content" class="container">
{% block content %}{% endblock content %}
</div>
</body>
Expand Down

0 comments on commit de4125f

Please sign in to comment.