File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1717
1818
1919def test_repr () -> None :
20- source = JsonConfigSettingsSource (BaseSettings () , Path ('config.json' ))
20+ source = JsonConfigSettingsSource (BaseSettings , Path ('config.json' ))
2121 assert repr (source ) == 'JsonConfigSettingsSource(json_file=config.json)'
2222
2323
Original file line number Diff line number Diff line change 2222
2323
2424def test_repr () -> None :
25- source = TomlConfigSettingsSource (BaseSettings () , Path ('config.toml' ))
25+ source = TomlConfigSettingsSource (BaseSettings , Path ('config.toml' ))
2626 assert repr (source ) == 'TomlConfigSettingsSource(toml_file=config.toml)'
2727
2828
Original file line number Diff line number Diff line change 2222
2323
2424def test_repr () -> None :
25- source = YamlConfigSettingsSource (BaseSettings () , Path ('config.yaml' ))
25+ source = YamlConfigSettingsSource (BaseSettings , Path ('config.yaml' ))
2626 assert repr (source ) == 'YamlConfigSettingsSource(yaml_file=config.yaml)'
2727
2828
You can’t perform that action at this time.
0 commit comments