rearranged imports in cli
Browse files- scripts/pytubectl +3 -3
scripts/pytubectl
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
#!/usr/bin/env python
|
2 |
|
3 |
-
import sys
|
4 |
-
import argparse
|
5 |
-
|
6 |
from pytube import YouTube
|
7 |
from pytube.utils import print_status
|
8 |
from pytube.exceptions import YouTubeError
|
9 |
|
|
|
|
|
|
|
10 |
|
11 |
def _main():
|
12 |
parser = argparse.ArgumentParser(description='YouTube video downloader')
|
|
|
1 |
#!/usr/bin/env python
|
2 |
|
|
|
|
|
|
|
3 |
from pytube import YouTube
|
4 |
from pytube.utils import print_status
|
5 |
from pytube.exceptions import YouTubeError
|
6 |
|
7 |
+
import sys
|
8 |
+
import argparse
|
9 |
+
|
10 |
|
11 |
def _main():
|
12 |
parser = argparse.ArgumentParser(description='YouTube video downloader')
|