File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ name = "write-githubstat"
7
7
packages = [
8
8
{ include = " writegithubstat" , from = " src" },
9
9
]
10
- version = " 0.1.2 "
10
+ version = " 0.1.3 "
11
11
readme = " README.md"
12
12
description = " write-githubstat makes it easy to collect, filter and save github statistics to csv files."
13
13
license = " Apache 2.0"
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ def urls(self) -> List[str]:
91
91
92
92
@property
93
93
def dimensions (self ) -> List [str ]:
94
- return ["path" , "title" ]
94
+ return ["path" ]
95
95
96
96
@property
97
97
def measures (self ) -> List [str ]:
@@ -100,6 +100,7 @@ def measures(self) -> List[str]:
100
100
def process_stat (self , responses : List [Dict [str , Any ]]) -> pd .DataFrame :
101
101
data = responses [0 ]
102
102
df = pd .DataFrame (data )
103
+ df = df .drop ("title" , axis = 1 )
103
104
return df
104
105
105
106
You can’t perform that action at this time.
0 commit comments