Skip to content

Commit cb8eb5d

Browse files
committed
lint
1 parent 29a2513 commit cb8eb5d

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

devcycle_python_sdk/open_feature_provider/provider.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ def resolve_object_details(
140140
flag_key: str,
141141
default_value: Union[Mapping[str, FlagValueType], Sequence[FlagValueType]],
142142
evaluation_context: Optional[EvaluationContext] = None,
143-
) -> FlagResolutionDetails[Union[Mapping[str, FlagValueType], Sequence[FlagValueType]]]:
143+
) -> FlagResolutionDetails[
144+
Union[Mapping[str, FlagValueType], Sequence[FlagValueType]]
145+
]:
144146
if not isinstance(default_value, dict):
145147
raise TypeMismatchError("Default value must be a flat dictionary")
146148

example/django-app/config/settings.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
# Build paths inside the project like this: BASE_DIR / 'subdir'.
1717
BASE_DIR = Path(__file__).resolve().parent.parent
1818

19-
2019
# Quick-start development settings - unsuitable for production
2120
# See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/
2221

@@ -34,7 +33,6 @@
3433
}
3534
}
3635

37-
3836
# Application definition
3937

4038
INSTALLED_APPS = [
@@ -78,7 +76,6 @@
7876

7977
WSGI_APPLICATION = "config.wsgi.application"
8078

81-
8279
# Database
8380
# https://docs.djangoproject.com/en/4.1/ref/settings/#databases
8481

@@ -89,7 +86,6 @@
8986
}
9087
}
9188

92-
9389
# Password validation
9490
# https://docs.djangoproject.com/en/4.1/ref/settings/#auth-password-validators
9591

@@ -108,7 +104,6 @@
108104
},
109105
]
110106

111-
112107
# Internationalization
113108
# https://docs.djangoproject.com/en/4.1/topics/i18n/
114109

@@ -120,7 +115,6 @@
120115

121116
USE_TZ = True
122117

123-
124118
# Static files (CSS, JavaScript, Images)
125119
# https://docs.djangoproject.com/en/4.1/howto/static-files/
126120

0 commit comments

Comments
 (0)