We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a26ad9e commit 38cb133Copy full SHA for 38cb133
dashboard/dashboard/backend/table_state.py
@@ -96,7 +96,7 @@ def last_page(self):
96
self.offset = (self.total_pages - 1) * self.limit
97
98
def load_entries(self):
99
- with Path("item.csv").open(mode="r", encoding="utf-8") as file:
+ with Path("items.csv").open(mode="r", encoding="utf-8") as file:
100
reader = csv.DictReader(file)
101
self.items = [Item(**row) for row in reader]
102
self.total_items = len(self.items)
0 commit comments