Browse Source

Create __main__.py

Allow for it to be run from outer directory with `python deletefb`
pull/49/head
ConnorSkees 5 years ago
parent
commit
5a42296b30
  1. 5
      deletefb/__main__.py

5
deletefb/__main__.py

@ -0,0 +1,5 @@
#!/usr/bin/env python
import deletefb
if __name__ == "__main__":
deletefb.run_delete()
Loading…
Cancel
Save