Move future import to after the module docstring

Looks like someone added this but placed it before the module docstring.
Fixing it as I notice it.
This commit is contained in:
Dave Pearson
2023-02-14 15:00:57 +00:00
parent e26e75a9d1
commit 7763020f53

View File

@@ -1,7 +1,7 @@
from __future__ import annotations
"""Simple version of 5x5, developed for/with Textual.""" """Simple version of 5x5, developed for/with Textual."""
from __future__ import annotations
from pathlib import Path from pathlib import Path
from typing import TYPE_CHECKING, cast from typing import TYPE_CHECKING, cast