Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion repositories.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
[
"group f",
"Group 1",
["https://github.com/Afab1311/MiniTwit-gruppe1"],
["https://github.com/Afab1311/MiniTwit-gruppe1"], ["https://github.com/sebseb10/ITU-MiniTwit"]

Comment on lines +40 to 41
Copy link

Copilot AI Feb 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The group f entry is syntactically invalid: you’ve added a second list expression (["..."]) instead of adding a second URL inside the existing URL list, and there’s also a missing comma before the following FrontEndURL string. This will break parsing/import of repositories.py. Update this entry to keep a single URL list (e.g., two strings inside the same list) and ensure it ends with a trailing comma before the next field.

Suggested change
["https://github.com/Afab1311/MiniTwit-gruppe1"], ["https://github.com/sebseb10/ITU-MiniTwit"]
["https://github.com/Afab1311/MiniTwit-gruppe1", "https://github.com/sebseb10/ITU-MiniTwit"],

Copilot uses AI. Check for mistakes.
"http(s)://<TBA>/<FrontEndURL>",
"http(s)://<TBA>/<APIURL>",
Expand Down
Loading