Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
skogsbaer committed Apr 25, 2024
1 parent b13ff7d commit d59594f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/common/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ def importModuleNotInStudent(modName: str) -> Any:
m = importlib.import_module(modName)
return m
except ImportError as e:
e.add_note(f'Could not import {modName}. Are in the student repo? '\
'Then deactivate the test triggering this error.')
e.add_note(f'Could not import {modName}. Are in the student repo?')
raise e

def splitIf[T](l: list[T], pred: Callable[[T], bool],
Expand Down

0 comments on commit d59594f

Please sign in to comment.