There was an error while loading. Please reload this page.
1 parent 9e850db commit adf1e5bCopy full SHA for adf1e5b
2 files changed
cli4/__main__.py
@@ -1,14 +1,16 @@
1
#!/usr/bin/env python
2
+"""CloudFlare API via command line"""
3
4
import sys
5
6
from cli4 import cli4
7
8
def main(args=None):
- if args is None:
9
- args = sys.argv[1:]
10
- cli4(args)
+ """CloudFlare API via command line"""
+ if args is None:
11
+ args = sys.argv[1:]
12
+ cli4(args)
13
14
if __name__ == '__main__':
- main()
15
+ main()
16
0 commit comments