Skip to content

Commit b34c39d

Browse files
committed
refactor: fix one awkward type annotation
1 parent a5eda0c commit b34c39d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/scriv/config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Scriv configuration."""
22

3+
from __future__ import annotations
4+
35
import configparser
46
import contextlib
57
import logging
@@ -270,7 +272,7 @@ def __getattr__(self, name):
270272
return value
271273

272274
@classmethod
273-
def read(cls) -> "Config":
275+
def read(cls) -> Config:
274276
"""
275277
Read the configuration to use.
276278

0 commit comments

Comments
 (0)