Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
ShuN6211 committed Dec 28, 2022
1 parent 4a48a3d commit 359d37a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sc_vortex_2d/vortex.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ def construct(self) -> None:

with gzip.open(JsonPath.DELTA_T03_PATH.value, "r") as f:
delta_dict: Dict[str, List[float]] = json.load(f)
self.pair_potential = make_spline(self.kfr, delta_dict[JsonKey.DELTA_KEY.value])
self.pair_potential = make_spline(
self.kfr, delta_dict[JsonKey.DELTA_KEY.value]
)

with gzip.open(JsonPath.SPECTRA_T03_PATH.value, "r") as f:
spectra_dict: Dict[str, float] = json.load(f)
Expand Down

0 comments on commit 359d37a

Please sign in to comment.