Skip to content

Commit

Permalink
Fix typo (fiel_value -> field_value) (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
kkirsche authored Jul 12, 2023
1 parent 5af2188 commit b7478d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -550,8 +550,8 @@ class JsonConfigSettingsSource(PydanticBaseSettingsSource):
file_content_json = json.loads(
Path('tests/example_test_config.json').read_text(encoding)
)
fiel_value = file_content_json.get(field_name)
return fiel_value, field_name, False
field_value = file_content_json.get(field_name)
return field_value, field_name, False

def prepare_field_value(
self, field_name: str, field: FieldInfo, value: Any, value_is_complex: bool
Expand Down

0 comments on commit b7478d6

Please sign in to comment.