Niels Pichon
Niels Pichon
Hello to the gin-config team 👋 Thanks for the great tool. Because I am using gin in many of my projects and reading all white text hurts my eyes I...
There are instances where we may want to pass an enum class as argument of a parameter in a gin config. However because in most cases, enums are not derivable...
## Goal This PR aims at making config inheritance possible. To do so it makes to contributions: * allow specifying a list of config files for a single argument with...
## Question I came across the `avoid_class_mutation` kwarg in the definition of `_make_configurable`. When would it be best to use one or the other option? This parameter is also not...
Solves issue #14 Tested with: ``` import mcworldlib as mc import psutil world = mc.load('some_level') regions = world.regions[mc.OVERWORLD] process = psutil.Process() for region_coords in regions: region = regions[region_coords] region.uncache() region...
## Issue As of now, the region files are lazy loaded, but they never actually get offloaded, which may lead to Out Of Memory exceptions on smaller machines or for...