Skip to content

Commit

Permalink
Fix linter errors due to excessive line length
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjacob committed Jan 8, 2024
1 parent 5c57bd1 commit 749f113
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion blackboard/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ def fetch_content_children(self, response: Any) -> list[BBContentChild]:
# content file attachments #

@get("/courses/{course_id}/contents/{content_id}/attachments/{attachment_id}")
def fetch_file_attachments(self, response: Any) -> list[BBAttachment] | BBAttachment:
def fetch_file_attachments(self, response: Any
) -> list[BBAttachment] | BBAttachment:
"""Get the file attachment meta data associated to the Content Item.
or Get the file attachment meta data by an attachment ID.
Expand Down

0 comments on commit 749f113

Please sign in to comment.