From 0096c8e2473fa2d8841e7b0d435067a77c321955 Mon Sep 17 00:00:00 2001 From: Kevin Lloyd Bernal Date: Wed, 1 Mar 2023 19:12:44 +0800 Subject: [PATCH] fix rebase conflict in _skip_nonitem_fields --- web_poet/pages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web_poet/pages.py b/web_poet/pages.py index 1fbbde2b..823d97d8 100644 --- a/web_poet/pages.py +++ b/web_poet/pages.py @@ -1,5 +1,5 @@ import abc -from typing import Any, ClassVar, Generic, List, Type, TypeVar, Union +from typing import Any, Generic, List, Type, TypeVar import attrs @@ -70,7 +70,7 @@ class ItemPage(Injectable, Returns[ItemT]): kw_only=True, default=None, ) - _skip_nonitem_fields = ClassVar[Union[_NOT_SET, bool]] + _skip_nonitem_fields = _NOT_SET def _get_skip_nonitem_fields(self) -> bool: value = self._skip_nonitem_fields