Skip to content

Commit

Permalink
Use explicit arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
TLCFEM committed Mar 16, 2024
1 parent c7d78ad commit 66183fe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/msglc/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

from __future__ import annotations

import gc
from dataclasses import dataclass
from io import BytesIO, BufferedReader
Expand Down Expand Up @@ -49,7 +51,7 @@ def configure(
write_buffer_size: int = None,
read_buffer_size: int = None,
fast_loading: bool = None,
fast_loading_threshold: float = None,
fast_loading_threshold: int | float = None,
trivial_size: int = None,
disable_gc: bool = None,
simple_repr: bool = None,
Expand Down

0 comments on commit 66183fe

Please sign in to comment.