質問編集履歴
1
情報の追加、タイトルの修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
p
|
1
|
+
TypeError: gmail_send() missing 3 required positional argumentsを解消したい
|
test
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
|
3
3
|
どうしたら、繰り返しやってくれますか。
|
4
4
|
|
5
|
-
具体的なエラーというよりも、ずっと………と動かない感じです。
|
6
|
-
|
7
5
|
|
8
6
|
|
9
7
|
###ソースコード
|
@@ -193,3 +191,37 @@
|
|
193
191
|
time.sleep(1)
|
194
192
|
|
195
193
|
```
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
###エラー
|
198
|
+
|
199
|
+
```
|
200
|
+
|
201
|
+
Traceback (most recent call last):
|
202
|
+
|
203
|
+
File "C:\test\autemail.py", line 90, in <module>
|
204
|
+
|
205
|
+
schedule.run_pending()
|
206
|
+
|
207
|
+
File "C:\Users\Owner\AppData\Local\Programs\Python\Python39\lib\site-packages\schedule\__init__.py", line 780, in run_pending
|
208
|
+
|
209
|
+
default_scheduler.run_pending()
|
210
|
+
|
211
|
+
File "C:\Users\Owner\AppData\Local\Programs\Python\Python39\lib\site-packages\schedule\__init__.py", line 100, in run_pending
|
212
|
+
|
213
|
+
self._run_job(job)
|
214
|
+
|
215
|
+
File "C:\Users\Owner\AppData\Local\Programs\Python\Python39\lib\site-packages\schedule\__init__.py", line 172, in _run_job
|
216
|
+
|
217
|
+
ret = job.run()
|
218
|
+
|
219
|
+
File "C:\Users\Owner\AppData\Local\Programs\Python\Python39\lib\site-packages\schedule\__init__.py", line 661, in run
|
220
|
+
|
221
|
+
ret = self.job_func()
|
222
|
+
|
223
|
+
TypeError: gmail_send() missing 3 required positional arguments: 'send_name', 'mail_to', and 'filename'
|
224
|
+
|
225
|
+
|
226
|
+
|
227
|
+
```
|