We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee0ff0c commit b989c01Copy full SHA for b989c01
2 files changed
crud-operations/README.md
@@ -1,6 +1,6 @@
1
# What Are CRUD Operations?
2
3
-This repository contains code related to the Real Python tutorial on [building a front end for a REST API](https://realpython.com/crud-operations/).
+This repository contains code related to the Real Python tutorial on [CRUD operations](https://realpython.com/crud-operations/).
4
5
## Setup
6
crud-operations/crud_sql_alchemy.py
@@ -12,7 +12,7 @@ class Bird(Base):
12
name = Column(String)
13
14
def __repr__(self):
15
- return f"<Bird(id={self.id}, name='{self.name}')>"
+ return f"Bird(id={self.id}, name={self.name!r})"
16
17
18
engine = create_engine("sqlite:///birds.db")
0 commit comments