Skip to content

Commit

Permalink
fix resource name
Browse files Browse the repository at this point in the history
  • Loading branch information
JPapir committed Feb 3, 2025
1 parent 64e7deb commit 7a0e9b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qumin/representations/frequencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def _read_aggregate_frequencies(self, name, force_uniform=False):
# 2. For forms, try to read from the frequencies table.
elif not force_uniform and name == 'forms' and self.p.has_resource("frequencies"):
log.info('No frequencies in the paradigms table, looking for a frequency table.')
freq = px.read_table('frequency', self.p, index_col='freq_id',
freq = px.read_table('frequencies', self.p, index_col='freq_id',
usecols=['form', 'value', 'freq_id'])
freq_col = freq.columns
if "form" not in freq_col:
Expand Down

0 comments on commit 7a0e9b8

Please sign in to comment.