yoon
yoon
getting the same error and am unable to read my .env. however, enabling experimental integrations or changing the default test runner (as mentioned [here](https://github.com/ashald/EnvFile/issues/161#issuecomment-966184489)) don't resolve me being able to...
`profiling.py`, `requests.py`, and `summary.py` look good to me. The tests look good at a glance. Appears to resolve the issue on the ticket. Hopefully Seb or someone else comes in...
named groups can be `Some(String)` then. if it's named, then there's a string, otherwise `Nil`. iirc erlang uses PCRE for its regex implementation, so the feature of named strings is...
here's how javascript handles it ```js >> /(?new|old)\s+(\w+)/.exec("new match_type") Array(3) [ "new match_type", "new", "match_type" ] 0: "new match_type" 1: "new" 2: "match_type" groups: Object { type_of: "new" } type_of:...
due to how Erlang handles matches though, it may be necessary to instead include desired group names in `Options`. ```erl 1> re:run("new match_type", "(?new|old)\\s+(\\w+)"). {match,[{0,14},{0,3},{4,10}]} 2> re:run("new match_type", "(?new|old)\\s+(\\w+)", [{capture,...
I see now gleam/regex is meant to be a port of [Elm's Regex](https://package.elm-lang.org/packages/elm/regex/latest/Regex) package and they unfortunately don't have a way to extract capturing group names either. Straying from this...
I tried default settings, disabling weather, setting a fixed location, etc. ## Screenshots  ## System - OS: macOS 15.3.2 24D81 arm64 - tmux 3.5a
IDK why or how, but only after posting do I actually get a fix. What I did doesn't make sense but here are the steps I've taken leading up to...
+1 Where `Bet().update_or_create() -> Bet` and `Event().update_or_create() -> Event` This works just fine: ```py def process_item(self, item: Bet | Event, spider: Spider) -> Bet | Event: return item.update_or_create(self.session) ``` But...