Skip to content

Commit

Permalink
Merge branch 'master' into python-3.5-support-removal
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Dec 28, 2020
2 parents 754a58a + b77412c commit 139bada
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ def _run_tests(self, do_cleanup=True):
self.assertEqual(self.cache.count(), 0, 'Cache cleanup failed')

# test count
for i in range(0, 20):
for i in range(20):
self.cache.store(f'testkey{i}', 'testvalue')
self.assertEqual(self.cache.count(), 20, 'Count is wrong')

Expand Down
1 change: 0 additions & 1 deletion tweepy/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,6 @@ def mutes(self):
required_auth=True
)


@property
def create_mute(self):
""" :reference: https://developer.twitter.com/en/docs/accounts-and-users/mute-block-report-users/api-reference/post-mutes-users-create
Expand Down

0 comments on commit 139bada

Please sign in to comment.