File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ name = "write-githubstat"
77packages = [
88 { include = " writegithubstat" , from = " src" },
99]
10- version = " 0.1.2 "
10+ version = " 0.1.3 "
1111readme = " README.md"
1212description = " write-githubstat makes it easy to collect, filter and save github statistics to csv files."
1313license = " Apache 2.0"
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ def urls(self) -> List[str]:
9191
9292 @property
9393 def dimensions (self ) -> List [str ]:
94- return ["path" , "title" ]
94+ return ["path" ]
9595
9696 @property
9797 def measures (self ) -> List [str ]:
@@ -100,6 +100,7 @@ def measures(self) -> List[str]:
100100 def process_stat (self , responses : List [Dict [str , Any ]]) -> pd .DataFrame :
101101 data = responses [0 ]
102102 df = pd .DataFrame (data )
103+ df = df .drop ("title" , axis = 1 )
103104 return df
104105
105106
You can’t perform that action at this time.
0 commit comments