Removed print
Browse files
Client/Extract Pixiv/user.py
CHANGED
|
@@ -11,7 +11,7 @@ else:
|
|
| 11 |
|
| 12 |
os.chdir(os.path.dirname(os.path.abspath(__file__)))
|
| 13 |
|
| 14 |
-
inp = input("Enter User IDs
|
| 15 |
user_ids = re.findall(r"\d+", inp)
|
| 16 |
|
| 17 |
user_ids = [int(uid) for uid in user_ids]
|
|
|
|
| 11 |
|
| 12 |
os.chdir(os.path.dirname(os.path.abspath(__file__)))
|
| 13 |
|
| 14 |
+
inp = input("Enter User IDs: ")
|
| 15 |
user_ids = re.findall(r"\d+", inp)
|
| 16 |
|
| 17 |
user_ids = [int(uid) for uid in user_ids]
|