mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
9 lines
143 B
Python
9 lines
143 B
Python
#!/usr/bin/env python3
|
|
from app.tests.tests import test_user
|
|
from doesntexist import badimport
|
|
|
|
print(test_user())
|
|
|
|
bad_call()
|
|
|
|
badimport.foo() |