Skip to content

Commit

Permalink
chore; long lines reformated with black
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeWithEmad committed Oct 3, 2023
1 parent 6860cb1 commit c4e044d
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions tutormfe/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,47 +30,56 @@ def gh_refs_path() -> str:
CORE_MFE_APPS: dict[str, MFE_ATTRS_TYPE] = {
"authn": {
"repository": "https://github.com/openedx/frontend-app-authn",
"refs": "https://api.github.com/repos/openedx/frontend-app-authn/git/refs/" + gh_refs_path(),
"refs": "https://api.github.com/repos/openedx/frontend-app-authn/git/refs/"
+ gh_refs_path(),
"port": 1999,
},
"account": {
"repository": "https://github.com/openedx/frontend-app-account",
"refs": "https://api.github.com/repos/openedx/frontend-app-account/git/refs/" + gh_refs_path(),
"refs": "https://api.github.com/repos/openedx/frontend-app-account/git/refs/"
+ gh_refs_path(),
"port": 1997,
},
"communications": {
"repository": "https://github.com/openedx/frontend-app-communications",
"refs": "https://api.github.com/repos/openedx/frontend-app-communications/git/refs/" + gh_refs_path(),
"refs": "https://api.github.com/repos/openedx/frontend-app-communications/git/refs/"
+ gh_refs_path(),
"port": 1984,
},
"course-authoring": {
"repository": "https://github.com/openedx/frontend-app-course-authoring",
"refs": "https://api.github.com/repos/openedx/frontend-app-course-authoring/git/refs/" + gh_refs_path(),
"refs": "https://api.github.com/repos/openedx/frontend-app-course-authoring/git/refs/"
+ gh_refs_path(),
"port": 2001,
},
"discussions": {
"repository": "https://github.com/openedx/frontend-app-discussions",
"refs": "https://api.github.com/repos/openedx/frontend-app-discussions/git/refs/" + gh_refs_path(),
"refs": "https://api.github.com/repos/openedx/frontend-app-discussions/git/refs/"
+ gh_refs_path(),
"port": 2002,
},
"gradebook": {
"repository": "https://github.com/openedx/frontend-app-gradebook",
"refs": "https://api.github.com/repos/openedx/frontend-app-gradebook/git/refs/" + gh_refs_path(),
"refs": "https://api.github.com/repos/openedx/frontend-app-gradebook/git/refs/"
+ gh_refs_path(),
"port": 1994,
},
"learning": {
"repository": "https://github.com/openedx/frontend-app-learning",
"refs": "https://api.github.com/repos/openedx/frontend-app-learning/git/refs/" + gh_refs_path(),
"refs": "https://api.github.com/repos/openedx/frontend-app-learning/git/refs/"
+ gh_refs_path(),
"port": 2000,
},
"ora-grading": {
"repository": "https://github.com/openedx/frontend-app-ora-grading",
"refs": "https://api.github.com/repos/openedx/frontend-app-ora-grading/git/refs/" + gh_refs_path(),
"refs": "https://api.github.com/repos/openedx/frontend-app-ora-grading/git/refs/"
+ gh_refs_path(),
"port": 1993,
},
"profile": {
"repository": "https://github.com/openedx/frontend-app-profile",
"refs": "https://api.github.com/repos/openedx/frontend-app-profile/git/refs/" + gh_refs_path(),
"refs": "https://api.github.com/repos/openedx/frontend-app-profile/git/refs/"
+ gh_refs_path(),
"port": 1995,
},
}
Expand Down

0 comments on commit c4e044d

Please sign in to comment.