Skip to content

Commit

Permalink
Merge branch 'main' into flow-external-resources
Browse files Browse the repository at this point in the history
  • Loading branch information
jiaqing23 authored Nov 20, 2024
2 parents 2c2522d + 209e54c commit c83d0d0
Show file tree
Hide file tree
Showing 7 changed files with 102 additions and 97 deletions.
3 changes: 1 addition & 2 deletions course/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1224,8 +1224,7 @@ def csv_data_importable(file_contents, column_idx_list, header_count):
return True, ""


def will_use_masked_profile_for_email(
recipient_email: None | str | list[str]) -> bool:
def will_use_masked_profile_for_email(recipient_email: str | list[str] | None) -> bool:
if not recipient_email:
return False
if not isinstance(recipient_email, list):
Expand Down
62 changes: 19 additions & 43 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dependencies": {
"@benrbray/prosemirror-math": "^1.0.0",
"@codemirror/autocomplete": "^6.18.1",
"@codemirror/autocomplete": "^6.18.3",
"@codemirror/commands": "^6.7.1",
"@codemirror/lang-markdown": "^6.2.0",
"@codemirror/lang-python": "^6.1.6",
Expand Down Expand Up @@ -51,7 +51,7 @@
"sass": "https://github.com/twbs/bootstrap/issues/40849"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
Expand Down
118 changes: 74 additions & 44 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion prairietest/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def has_access_to_exam(
exam_uuid: str,
now: datetime,
ip_address: IPv4Address | IPv6Address
) -> None | AllowEvent:
) -> AllowEvent | None:
facility_id_to_most_recent_allow_event: dict[int, AllowEvent] = {}
for allow_event in AllowEvent.objects.filter(
facility__course=course,
Expand Down
Loading

0 comments on commit c83d0d0

Please sign in to comment.