| Total Complexity | 2 | 
| Total Lines | 13 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | # -*- coding: utf-8 -*- | ||
|  | |||
| 2 | from babel.core import default_locale | ||
| 3 | |||
| 4 | |||
| 5 | def fake_translator(text: str): | ||
| 6 | # TODO - G.M - 27-03-2018 - [i18n] Reconnect true internationalization | ||
| 7 | return text | ||
| 8 | |||
| 9 | |||
| 10 | def get_locale(): | ||
| 11 | # TODO - G.M - 27-03-2018 - [i18n] Reconnect true internationalization | ||
| 12 |     return default_locale('LC_TIME') | ||
| 13 | 
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.