diff --git a/xmodule/static_content.py b/xmodule/static_content.py deleted file mode 100755 index e6c1aed23530..000000000000 --- a/xmodule/static_content.py +++ /dev/null @@ -1,25 +0,0 @@ -# /usr/bin/env python -""" -This module used to hold a CLI utility for gathering up the JS and Sass used by several built-in XBlocks. - -It now remains as a stub, just for backwards compatibility. - -It will soon be removed as part of https://github.com/openedx/edx-platform/issues/31798. -""" -import logging -import sys - - -def main(): - """ - Warn that this script is now a stub, and return success (zero). - """ - logging.warning( - "xmodule/static_content.py, aka xmodule_assets, is now a no-op. " - "Please remove calls to it from your build pipeline. It will soon be deleted.", - ) - return 0 - - -if __name__ == "__main__": - sys.exit(main())