diff --git a/pyproject.toml b/pyproject.toml index 9c81d7c..a64d045 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "write-githubstat" packages = [ { include = "writegithubstat", from = "src" }, ] -version = "0.1.2" +version = "0.1.3" readme = "README.md" description = "write-githubstat makes it easy to collect, filter and save github statistics to csv files." license = "Apache 2.0" diff --git a/src/writegithubstat/githubstat.py b/src/writegithubstat/githubstat.py index e41dec3..f8d6394 100644 --- a/src/writegithubstat/githubstat.py +++ b/src/writegithubstat/githubstat.py @@ -91,7 +91,7 @@ def urls(self) -> List[str]: @property def dimensions(self) -> List[str]: - return ["path", "title"] + return ["path"] @property def measures(self) -> List[str]: @@ -100,6 +100,7 @@ def measures(self) -> List[str]: def process_stat(self, responses: List[Dict[str, Any]]) -> pd.DataFrame: data = responses[0] df = pd.DataFrame(data) + df = df.drop("title", axis=1) return df