Peter Byfield
Peter Byfield
## 🐛 Bug Report The Trans component defaultValue is not working for an empty string. Both for a string and for a function returning a string. ```js defaultValue: "" //...
I'm trying to extract all the imports from a python file. To do this I'm using the `rustpython_parser::parse` function to get an AST and then iterating over all the statements...
This PR adds the `find_shortest_cycle` method to grimp, which I've been proposing in e.g. https://github.com/seddonym/grimp/issues/189. This is a low-level, granular method for finding cycles in the import graph. We could...
## Problem summary * It's possible to construct `FiniteDatetimeRange`s with mixed tzinfo (where the start and end have different tzinfo). * This makes the `FiniteDatetimeRange.days` property confusing and error prone...
# Problem Within the ranges module we use `typing.cast` in some places to cast the return type. For example, [here](https://github.com/octoenergy/xocto/blob/79d388428947b036fa9a6ef7984f3dd6031cebd0/xocto/ranges.py#L502) when taking the intersection of two `FiniteRange`s we cast the...
# Problem Since the import graph in grimp was rewritten in rust (https://github.com/seddonym/grimp/pull/166) there are a number of remaining performance bottlenecks: * Building the graph * Removing ignored imports Building...
I am using the NSwag.MSBuild NuGet package to generate a typescript (angular) client for my dotnet core project. I see that all of the configuration for nswag is done in...
Forked from https://github.com/python-grimp/grimp/pull/263. In this version we discover all modules before we start parsing any of them. This version is a little less performant, but it is easier to understand...