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

Commit

Permalink
fix args
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Feb 17, 2023
1 parent 52c4881 commit d2df4ff
Showing 1 changed file with 2 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,6 +52,7 @@ def create_project(
project_name: str | None = None,
source_language_code: str = "en_GB",
private: bool = False,
repository_url: str = None,
**kwargs,
) -> None | Resource:
"""Create a project."""
Expand All @@ -64,7 +65,7 @@ def create_project(
source_language=source_language,
private=private,
organization=self.organization,
**kwargs,
repository_url=repository_url,
)
logging.info("Project created!")
return res
Expand Down

0 comments on commit d2df4ff

Please sign in to comment.