Skip to content

Commit 736a959

Browse files
authored
Update get.py
1 parent 0972c13 commit 736a959

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

braininventory/get.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,7 @@ def report():
101101
return report
102102

103103
def __get_project(df):
104-
return df['project'].value_counts().to_dict() #returns an int of the number of unique projects in the dataframe
104+
'''
105+
Returns the number of unique projects in dataframe.
106+
'''
107+
return df['project'].value_counts().to_dict()

0 commit comments

Comments
 (0)