I can't figure out how to resolve Python Praw deprecation warning

40 views Asked by At
./update.py:63: DeprecationWarning: Positional arguments for 'WikiPage.edit' will no longer be supported in PRAW 8.
Call this function with 'content' as a keyword argument.
  reddit.subreddit(subreddit).wiki['config/sidebar'].edit(newsidebar)

I don't understand what it is telling me.

I tried..

reddit.subreddit(subreddit).wiki['content'].edit(newsidebar)

but it doesn't work and I still get the warning.

1

There are 1 answers

2
reggiepy On
import warnings
warnings.filterwarnings("ignore",category=DeprecationWarning)