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

Commit

Permalink
min 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Jun 26, 2019
1 parent 284983f commit e55a8ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pytransifex/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,9 @@ def create_language(self, project_slug: str, language_code: str, coordinators: l
if response.status_code != requests.codes['CREATED']:
raise PyTransifexException(response)

def coordinator(self, project_slug: str, language_code: str = 'en'):
def coordinator(self, project_slug: str, language_code: str = 'en') -> str:
"""
Retruns the coordinator of the the project
Parameters
----------
project_slug:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup
import sys

python_min_version = (3, 7)
python_min_version = (3, 6)

if sys.version_info < python_min_version:
sys.exit('pytransifex requires at least Python version {vmaj}.{vmin}.\n'
Expand Down

0 comments on commit e55a8ee

Please sign in to comment.