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

Commit

Permalink
Revert "repossitory_url doesn't seem accepted by API"
Browse files Browse the repository at this point in the history
This reverts commit 067d5c2.
  • Loading branch information
3nids committed Feb 17, 2023
1 parent 067d5c2 commit 71e6c2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pytransifex/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ def create_project(
project_name: str | None = None,
source_language_code: str = "en_GB",
private: bool = False,
**kwargs,
*args, # absorbing extra args
**kwargs, # absorbing extra kwargs
) -> None | Resource:
"""Create a project."""
source_language = tx_api.Language.get(code=source_language_code)
Expand Down
1 change: 1 addition & 0 deletions pytransifex/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ 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 71e6c2a

Please sign in to comment.