Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewkuner committed Nov 6, 2023
1 parent f5466fb commit 86ca261
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions pymatgen/io/validation/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
import json
from pathlib import Path
from typing import Dict, List, Type, TypeVar, Union
from typing import Dict, Type, TypeVar, Union

import requests
from monty.json import MontyDecoder
Expand All @@ -23,9 +23,7 @@ class IOValidationSettings(BaseSettings):
Settings for pymatgen-io-validation
"""

config_file: str = Field(
DEFAULT_CONFIG_FILE_PATH, description="File to load alternative defaults from"
)
config_file: str = Field(DEFAULT_CONFIG_FILE_PATH, description="File to load alternative defaults from")

VASP_KPTS_TOLERANCE: float = Field(
0.9,
Expand Down Expand Up @@ -128,4 +126,4 @@ def as_dict(self):
"""
HotPatch to enable serializing IOValidationSettings via Monty
"""
return self.dict(exclude_unset=True, exclude_defaults=True)
return self.dict(exclude_unset=True, exclude_defaults=True)

0 comments on commit 86ca261

Please sign in to comment.