From 08b7390aadd93b8155028864ff7c59048c8b24ef Mon Sep 17 00:00:00 2001 From: CLIF Team Date: Mon, 24 Jul 2023 21:23:09 -0700 Subject: [PATCH] Fixing what I think is a bug in the Pyclif documentation. I'm pretty sure that from x.y.z as * isn't a thing and that from x.y.z import * was intended. Relying on the reviewer who wrote that line to correct me if I am wrong. PiperOrigin-RevId: 550763782 --- clif/python/primer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clif/python/primer.md b/clif/python/primer.md index 13f7cbc7..27823f9c 100644 --- a/clif/python/primer.md +++ b/clif/python/primer.md @@ -114,7 +114,7 @@ from some.place import _mylib as ext and/or (!) ```python -from some.place._mylib as * # pylint: disable=wildcard-import +from some.place._mylib import * # pylint: disable=wildcard-import ``` The second form may be preferable if `_mylib` wraps many functions or types,