diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2023-06-30 10:54:02 -0700 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2023-07-25 15:50:21 -0400 |
commit | 54295560ea4a5c2e1935f1cc72526bb2b5171440 (patch) | |
tree | 225fedaf114745a661a58ae25836b296d8bf41eb | |
parent | 6aceb7e2d6053a80af88280c7006baec1d25be55 (diff) | |
download | meson-54295560ea4a5c2e1935f1cc72526bb2b5171440.zip meson-54295560ea4a5c2e1935f1cc72526bb2b5171440.tar.gz meson-54295560ea4a5c2e1935f1cc72526bb2b5171440.tar.bz2 |
minit: fix docstring
Which must come before `from __future__`
-rw-r--r-- | mesonbuild/minit.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/minit.py b/mesonbuild/minit.py index 7cca9cf..8fc1811 100644 --- a/mesonbuild/minit.py +++ b/mesonbuild/minit.py @@ -11,10 +11,11 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -from __future__ import annotations """Code that creates simple startup projects.""" +from __future__ import annotations + from pathlib import Path from enum import Enum import subprocess |