Skip to content

Instantly share code, notes, and snippets.

@msullivan
Created April 3, 2026 03:57
Show Gist options
  • Select an option

  • Save msullivan/90996c05e8c8e01c2492d1c657b59d52 to your computer and use it in GitHub Desktop.

Select an option

Save msullivan/90996c05e8c8e01c2492d1c657b59d52 to your computer and use it in GitHub Desktop.
# this file intentionally left blank
from .uhoh import x
import sys
def filt(importer: str, name: str, fromlist: tuple[str, ...] | None) -> bool:
print(f'{importer=} {name=} {fromlist=}')
return False
if __name__ == '__main__':
sys.set_lazy_imports("all")
sys.set_lazy_imports_filter(filt)
from . import go
# aa
print("TEST")
x = 'test'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment