commit a07bfb9027522507483673694443cb5a99b9af4a
parent 8638609fb0d4e32b40b0d53b73c9841ef824e1f9
Author: Brennen T. Mazur <brennen@madis.cool>
Date: Thu, 26 Jan 2023 15:23:06 -0700
fixed hardcoded _id value
Diffstat:
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/seeds.py b/seeds.py
@@ -18,7 +18,6 @@ user1 = {
}
user2 = {
- '_id': '2',
'username': 'Brennen',
'password': 'password',
'role': 'Developer',
@@ -32,4 +31,4 @@ user2 = {
collection.insert_many([user1, user2])
for x in collection.find():
- print(x)
-\ No newline at end of file
+ print(x)