Skip to content

Commit 2237d9d

Browse files
authored
Update get.py
1 parent 0df8e1b commit 2237d9d

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

braininventory/get.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,10 @@ def report():
100100

101101
return report
102102

103+
# Get the list of names for unique projects
103104
def __get_projects(df):
104105
return df['project'].unique()
105-
projects = __get_projects(df)
106-
print(projects)
107106

107+
# Get the number of unique projects
108108
def __get_number_of_projects(df):
109-
return len(df['project'].unique())
110-
number_of_projects = __get_number_of_projects(df)
111-
print(number_of_projects)
112-
109+
return len(df['project'].unique())=

0 commit comments

Comments
 (0)