Skip to content

Commit 85333f3

Browse files
committed
Fix format
1 parent 02129f9 commit 85333f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pycardano/backend/ogmios.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,9 @@ def _get_datum_from_kupo(self, datum_hash: str) -> Optional[RawCBOR]:
287287
"""
288288
datum = self._datum_cache.get(datum_hash, None)
289289

290-
if datum is not None or (datum_hash in self._datum_cache and not self._is_chain_tip_updated()):
290+
if datum is not None or (
291+
datum_hash in self._datum_cache and not self._is_chain_tip_updated()
292+
):
291293
return datum
292294

293295
if self._kupo_url is None:

0 commit comments

Comments
 (0)