Skip to content

Commit

Permalink
update typing
Browse files Browse the repository at this point in the history
  • Loading branch information
mathause committed Nov 4, 2024
1 parent f6aab27 commit 53bb3ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion filefinder/_filefinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import os
import re
import warnings
from typing import Any

import numpy as np
import pandas as pd
Expand Down Expand Up @@ -608,7 +609,7 @@ def __getitem__(self, key):
return ret

@property
def meta(self) -> list[dict]:
def meta(self) -> list[dict[str, Any]]:
return self.df.to_dict("records")

@property
Expand Down

0 comments on commit 53bb3ea

Please sign in to comment.