Skip to content

Commit 2cf52e3

Browse files
committed
Fix formatting
1 parent dab06a1 commit 2cf52e3

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

tests/test_source_azure_key_vault.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
from pydantic import BaseModel, Field
1111

1212
from pydantic_settings import (
13-
BaseSettings,
1413
AzureKeyVaultSettingsSource,
14+
BaseSettings,
1515
PydanticBaseSettingsSource,
1616
)
1717
from pydantic_settings.sources import import_azure_key_vault

tests/test_source_cli.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
get_subcommand,
4040
)
4141

42-
4342
ARGPARSE_OPTIONS_TEXT = 'options' if sys.version_info >= (3, 10) else 'optional arguments'
4443

4544

@@ -112,7 +111,6 @@ class Settings(BaseSettings, cli_exit_on_error=False):
112111
assert CliApp.run(Settings, cli_args=['--p.foo', 'bar']).foobar == 'bar'
113112

114113

115-
116114
def test_cli_nested_arg():
117115
class SubSubValue(BaseModel):
118116
v6: str
@@ -2019,4 +2017,3 @@ def cli_cmd(self) -> None:
20192017
CliApp.run_subcommand(self)
20202018

20212019
CliApp.run(Root, cli_args=['child', '--val=hello'])
2022-

tests/test_source_pyproject_toml.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
from __future__ import annotations
66

77
import sys
8-
from typing import Optional, Tuple, Type, TYPE_CHECKING
8+
from typing import TYPE_CHECKING, Optional, Tuple, Type
99

10-
from pydantic import BaseModel
1110
import pytest
11+
from pydantic import BaseModel
1212

1313
from pydantic_settings import (
1414
BaseSettings,

0 commit comments

Comments
 (0)