|
|
|
|
|
by amelius
2511 days ago
|
|
> from functorflow import f, ff Please don't give these functions simple names like "f". I often use these names as generic function names locally. I know I can use "import ... as" but doing so shouldn't be necessary and will result in everybody using different names, which will hurt consistency, readability and searchability of code. |
|