a70ee58ae1
(#17032) It's been bothering me that we have a bunch of stub packages and such in a `scripts` directory.
12 lines
174 B
Python
12 lines
174 B
Python
from albatross import fly
|
|
|
|
try:
|
|
from bird_feeder import use
|
|
|
|
raise RuntimeError("bird-feeder installed")
|
|
except ModuleNotFoundError:
|
|
pass
|
|
|
|
fly()
|
|
print("Success")
|