Skip to content

Commit 5ae4d18

Browse files
committed
Fixing style
1 parent f90b33f commit 5ae4d18

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

tests/sparsezoo/utils/test_authentication.py

+9-7
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,19 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
from datetime import datetime, timedelta
16+
from unittest.mock import MagicMock, patch
17+
18+
import pytest
19+
import yaml
20+
1521
from sparsezoo.utils.authentication import (
16-
get_auth_header,
17-
_maybe_load_token,
18-
_save_token,
1922
CREDENTIALS_YAML_TOKEN_KEY,
2023
NM_TOKEN_HEADER,
24+
_maybe_load_token,
25+
_save_token,
26+
get_auth_header,
2127
)
22-
import pytest
23-
from datetime import datetime, timedelta
24-
import yaml
25-
from unittest.mock import patch, MagicMock
2628

2729

2830
def test_load_token_no_path(tmp_path):

0 commit comments

Comments
 (0)