Skip to content

Commit

Permalink
comment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SiebeLeDe committed Jan 29, 2024
1 parent 3260e7f commit 146bb13
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/tcutility/results/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
Tiny module that handles caching rkf files.
rkf files take a long time to open (especially {engine}.rkf), so it is better to open them once and cache them for later use
"""
from typing import Any, Union

from scm import plams
from typing import Union, Any

# the actual cache is stored in this dict
_cache = {}
Expand Down Expand Up @@ -48,7 +49,7 @@ def get(path: str) -> plams.KFReader:
Returns:
An rkf file reader that can be used for reading data from a calculation.
'''
"""
if not path:
return None

Expand Down

0 comments on commit 146bb13

Please sign in to comment.