Skip to content

Commit 800e99b

Browse files
authored
add space around the equals sign
1 parent 649ee06 commit 800e99b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/groupby/groupby.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1571,7 +1571,7 @@ def sample(groupby_result, size=None, frac=None, replace=False, weights=None):
15711571
sample_keys=[]
15721572
for i in sample:
15731573
sample_keys.append(dictionary_keys[i])
1574-
sample_dictionary={key: value for key, value in groups_dictionary.items() if key in sample_keys}
1574+
sample_dictionary = {key: value for key, value in groups_dictionary.items() if key in sample_keys}
15751575
return sample_dictionary
15761576

15771577

0 commit comments

Comments
 (0)