Skip to content

Commit f93442c

Browse files
committed
issue-814 fix formatting for python files
1 parent 4241d6a commit f93442c

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

components/rsptx/build_tools/core.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -706,8 +706,6 @@ def _process_single_chapter(sess, db_context, chapter, chap_num, course_name):
706706
return res.inserted_primary_key[0]
707707

708708

709-
710-
711709
def _process_subchapters(sess, db_context, chapter, chapid, course_name):
712710
"""Process all subchapters for a given chapter."""
713711
subchap = 0

components/rsptx/lti1p3/pylti1p3/tool_config/abstract.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ def check_iss_has_many_clients(self, iss: str) -> bool:
3939
return iss_type == IssuerToClientRelation.MANY_CLIENTS_IDS_PER_ISSUER
4040

4141
def set_iss_has_one_client(self, iss: str):
42-
self.issuers_relation_types[iss] = (
43-
IssuerToClientRelation.ONE_CLIENT_ID_PER_ISSUER
44-
)
42+
self.issuers_relation_types[
43+
iss
44+
] = IssuerToClientRelation.ONE_CLIENT_ID_PER_ISSUER
4545

4646
def set_iss_has_many_clients(self, iss: str):
47-
self.issuers_relation_types[iss] = (
48-
IssuerToClientRelation.MANY_CLIENTS_IDS_PER_ISSUER
49-
)
47+
self.issuers_relation_types[
48+
iss
49+
] = IssuerToClientRelation.MANY_CLIENTS_IDS_PER_ISSUER
5050

5151
async def find_registration(self, iss: str, *args, **kwargs) -> Registration:
5252
"""

0 commit comments

Comments
 (0)