Po-Yu Hsieh

Results 18 comments of Po-Yu Hsieh

> I tried the steps on this guide: https://solargraph.org/guides/rails > > It doesn't seem to change anything. Having the same issue as well. Did all the things suggeted in the...

Based on what @lilspelunker described, I also tried `ri MyModel` and nothing happen as well: ``` Nothing known about MyModel ```

@lilspelunker , not sure if you have solved it yet, but solution mentioned [here](https://github.com/castwide/solargraph/issues/410) may work, at least in my case some Rails documentation appears after running `solargraph clear` to...

Sounds great! Right at this moment I'm simply applying `bqva.analyzer.find_query_objects` on query strings to gather table information, then review dependencies between these queries manually. Would be nice if it's possible...

As for my case tables were specified in format `` `[dataset].[table]` `` in queries (though `` `[dataset]`.`[table]` `` seems to be more preferred), so the current regex pattern is supposed...

I'm wrapping my scripts into a package, so now taking the second approach. Just wondering how to achieve hierarchical command lists with more than two layers (such as `command_1 command_1_1...

@kootenpv Support on deeply nested subcommands is emphasized in [Typer](https://typer.tiangolo.com/tutorial/subcommands/nested-subcommands/)'s example, and [DynaCLI](https://github.com/BstLabs/py-dynacli) claims to support the same feature [with minimal modifications](https://www.reddit.com/r/Python/comments/t9b46m/comment/hzu6dq6). However, applications with super rich features (aka: complicated)...

Or using `quote_char` argument when calling `get_sql()`, though that seems pretty redundant: Reference: https://github.com/kayak/pypika/issues/14

@bersace Haven't looked into Clize pretty much, but one of the main differences is that Clize build its own CLI parser instead of using existing parser libraries (they thought `argparse`'s...

Just saw two issues with list options/arguments: - In `argparse`, it is allowed to add constraint requiring passing at least one item to a list option, through `nargs='+'`. From source...