pandichef

- Total activity 8
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 3
-
-
pandichef created a post, Non-function typing inspection
I love the Inspection "Type hinting is missing for function definition". However, is there a way to turn this feature on for ALL variable declarations (not just function definitions) i.e., a = 1 ... -
-
pandichef created a post, How to get Pycharm's coverage tool to work with monkey patching?
def test_do_something(): import custom_pandas_methods # patches collapse into pd.DataFrame df = pd.DataFrame({ 'a': [1,2,3], 'b': [1,2,3], }) assert df.collapse('a')...