Prabhjot Singh Rai
Prabhjot Singh Rai

Reputation: 2545

How to suppress error in pycharm community edition?

I am using this solution to merge two dictionaries in python in pycharm Community Edition 4.5.4. But the following code is showing error, although when I run the code it works perfect:

feats = {**feats, **feature_detector(words)} # one big dictionary

How can I disable it in pycharm?

EDIT

Here are the screenshots:

enter image description here

enter image description here

enter image description here

enter image description here

And here is the options that I get after hitting alt+Enter:

enter image description here

Upvotes: 2

Views: 261

Answers (1)

Prabhjot Singh Rai
Prabhjot Singh Rai

Reputation: 2545

Well I figured out that updating PyCharm may help resolve the issue. So I downloaded the latest version (2016.2.3). And then there was no error.

Upvotes: 1

Related Questions