From b7dc041f446e461db918ffa5127b624f883081c2 Mon Sep 17 00:00:00 2001 From: Ethan Smith Date: Sun, 15 Oct 2017 13:32:36 -0700 Subject: [PATCH] reexport names in 3/dateutil.tz (#1673) This was missed in #1669, and should completely fix #1665. --- third_party/3/dateutil/tz/__init__.pyi | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/third_party/3/dateutil/tz/__init__.pyi b/third_party/3/dateutil/tz/__init__.pyi index 4c8a6d2d1..b31dd07b5 100644 --- a/third_party/3/dateutil/tz/__init__.pyi +++ b/third_party/3/dateutil/tz/__init__.pyi @@ -1 +1,12 @@ -from .tz import tzutc, tzoffset, tzlocal, tzfile, tzrange, tzstr, tzical, gettz, datetime_exists, datetime_ambiguous +from .tz import ( + tzutc as tzutc, + tzoffset as tzoffset, + tzlocal as tzlocal, + tzfile as tzfile, + tzrange as tzrange, + tzstr as tzstr, + tzical as tzical, + gettz as gettz, + datetime_exists as datetime_exists, + datetime_ambiguous as datetime_ambiguous +)