Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
repossitory_url doesn't seem accepted by API
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Feb 17, 2023
1 parent c6fa75e commit 067d5c2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions pytransifex/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ def create_project(
project_name: str | None = None,
source_language_code: str = "en_GB",
private: bool = False,
repository_url: str | None = None,
**kwargs,
) -> None | Resource:
"""Create a project."""
Expand All @@ -65,7 +64,6 @@ def create_project(
source_language=source_language,
private=private,
organization=self.organization,
repository_url=repository_url,
)
logging.info("Project created!")
return res
Expand Down
1 change: 0 additions & 1 deletion pytransifex/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ def create_project(
source_language_code: str = "en-gb",
outsource_project_name: str | None = None,
private: bool = False,
repository_url: str | None = None,
):
raise NotImplementedError

Expand Down

0 comments on commit 067d5c2

Please sign in to comment.