appsembler / figures

Reporting and data retrieval app for Open edX
MIT License
44 stars 37 forks source link

Spike to test StudentModule save notification receiver #196

Closed johnbaldwin closed 2 years ago

johnbaldwin commented 4 years ago

This is spike code to run on Tahoe staging and have folks do some course activity. This will validate that the django model post_save signal notifies our receiver. This spike just dumps data to the default log with log lines starting with StudentModule.saved for easy grep'ing.

PyLint failing

Pylint is failing in figures.app for the import figures.signals line even though I've added lint error suppression there

************* Module figures.apps
659W: 62, 8: Unused variable 'figures.signals' (unused-variable)
660I: 62, 0: Useless suppression of 'unused-import' (useless-suppression)
johnbaldwin commented 4 years ago

@OmarIthawi Any idea why pylint is still complaining about the import in figures.apps even though the error suppression comment line is appended to the import? I also tried # noqa: F401 but that does not suppress the error either

thraxil commented 3 years ago

Is this still being worked on?