mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-22 23:18:12 +01:00
28 lines
801 B
Python
28 lines
801 B
Python
# Copyright (c) 2015-2016, 2018 Claudiu Popa <pcmanticore@gmail.com>
|
|
# Copyright (c) 2015 raylu <lurayl@gmail.com>
|
|
# Copyright (c) 2016 Ceridwen <ceridwenv@gmail.com>
|
|
|
|
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
|
|
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER
|
|
|
|
"""Astroid hooks for dateutil"""
|
|
|
|
import textwrap
|
|
|
|
from astroid import MANAGER, register_module_extender
|
|
from astroid.builder import AstroidBuilder
|
|
|
|
|
|
def dateutil_transform():
|
|
return AstroidBuilder(MANAGER).string_build(
|
|
textwrap.dedent(
|
|
"""
|
|
import datetime
|
|
def parse(timestr, parserinfo=None, **kwargs):
|
|
return datetime.datetime()
|
|
"""
|
|
)
|
|
)
|
|
|
|
|
|
register_module_extender(MANAGER, "dateutil.parser", dateutil_transform)
|