Create a partial `py.typed` file at the given path.
(path: PathBuf)
| 53 | |
| 54 | /// Create a partial `py.typed` file at the given path. |
| 55 | fn partial(path: PathBuf) -> io::Result<PathBuf> { |
| 56 | create(path, "partial\n") |
| 57 | } |
| 58 | |
| 59 | /// Create a `py.typed` file at the given path. |
| 60 | fn typed(path: PathBuf) -> io::Result<PathBuf> { |