Skip to content

Commit ebcc137

Browse files
committed
Remove empty line before slug in lecture YAML, and remove one duplicated slug
1 parent 6ab13de commit ebcc137

File tree

34 files changed

+3
-37
lines changed

34 files changed

+3
-37
lines changed

docs/docs/05_flask_smorest/02_data_model_improvements/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: "Data model improvements"
33
description: "Use dictionaries instead of lists for data storage, and store stores and items separately."
4-
54
slug: data-model-improvements
65
---
76

docs/docs/05_flask_smorest/06_api_with_method_views/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: How to use Blueprints and MethodViews
33
description: Flask-Smorest MethodViews allow us to simplify API Resources by defining all methods that interact with the resource in one Python class.
4-
54
slug: how-to-use-flask-smorest-methodviews-blueprints
65
---
76

docs/docs/05_flask_smorest/07_marshmallow_schemas/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Adding marshmallow schemas
33
description: A marshmallow schema is useful for validation and serialization. Learn how to write them in this lecture.
4-
54
slug: adding-marshmallow-schemas
65
---
76

docs/docs/05_flask_smorest/08_validation_with_marshmallow/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Validation with marshmallow
33
description: We can use the marshmallow library to validate request data from our API clients.
4-
54
slug: validation-with-marshmallow
65
---
76

docs/docs/05_flask_smorest/09_decorating_responses/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Decorating responses with Flask-Smorest
33
description: Add response serialization and status code to API endpoints, and add to your documentation in the process.
4-
54
slug: decorating-responses-with-flask-smorest
65
---
76

docs/docs/06_sql_storage_sqlalchemy/01_project_overview_sqlalchemy/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Project Overview, and why use SQLAlchemy
33
description: Let's look at what we'll do in this section. There are no changes to the client-facing API at all, just changes internally to how we store data.
4-
54
slug: project-overview-why-use-sqlalchemy
65
---
76

docs/docs/06_sql_storage_sqlalchemy/02_create_simple_sqlalchemy_model/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Create a simple SQLAlchemy Model
33
description: Lecture description goes here.
4-
54
slug: create-a-simple-sqlalchemy-model
65
---
76

docs/docs/06_sql_storage_sqlalchemy/03_one_to_many_relationships_sqlalchemy/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: One-to-many relationships with SQLAlchemy
33
description: Model relationships let us easily retrieve information about a related model, without having to do SQL JOINs manually.
4-
54
slug: one-to-many-relationships-with-sqlalchemy
65
---
76

docs/docs/06_sql_storage_sqlalchemy/04_configure_flask_sqlalchemy/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Configure Flask-SQLAlchemy
33
description: Link Flask-SQLAlchemy with our Flask app and create the initial tables.
4-
54
slug: configure-flask-sqlalchemy
65
---
76

docs/docs/06_sql_storage_sqlalchemy/05_insert_models_sqlalchemy/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Insert models in the database with SQLAlchemy
33
description: Learn how to use SQLAlchemy to add new rows to our SQL database.
4-
54
slug: insert-models-in-database-with-sqlalchemy
65
---
76

0 commit comments

Comments
 (0)