回答編集履歴

1

2020/11/23 12:40

投稿

sfdust
sfdust

スコア1135

test CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  ```python
10
10
 
11
- from tweepy import TweepError
11
+
12
12
 
13
13
  (略)
14
14
 
@@ -20,7 +20,7 @@
20
20
 
21
21
  data = api.get_user(followerID)
22
22
 
23
- except TweepError as e:
23
+ except tweepy.TweepError as e:
24
24
 
25
25
  print(str(e))
26
26
 
@@ -42,4 +42,6 @@
42
42
 
43
43
  print(followerData)
44
44
 
45
+ (略)
46
+
45
47
  ```