|
|
|
|
|
by OJFord
1588 days ago
|
|
My preference is actually for what GP doesn't like; the reason I don't like your suggestion is that: from typing import (
overload,
)
is silly, but I don't want: -from typing import overload
+from typing import (
+ overload,
+ List,
+)
when all I actually did (semantically) was: + List,
|
|