Aidavdw
Aidavdw
### Description Setting `text = cmd[update:(...)]` for label means the command is queried when hyprlock is first engaged. Image objects work differently, where a (default) path is given with `path`,...
taking a .sqrt() after multiplying two `Length`s, the dimensions behave as expected. ```rust let d1: Length = Length::new::(20.); let d2: Length = Length::new::(20.); let d3: Length = (d1 * d2).sqrt();...
Solves #39 . Introduces rustfmt.toml, and applied standard formatting for all files.
The `readme.md` still mentions the use of `PitchClass` to use construct a `Note`. ```rust use rustmt::note::{Note, PitchClass} let note = Note::new(PitchClass::As, 4); ``` If I am not mistaken, this has...
This crate has some formatting issues when comparing it to the [style guide](https://doc.rust-lang.org/stable/style-guide/editions.html) . Additionally, going back into the history I see there have been several commits with a bit...
## Purpose Fixes #58 by adding .pyi files for XDSM ## Expected time until merged Should be relatively trivial, as it's a single file. Not really that urgent. ## Type...
# Description of feature Being able to use python type checkers like mypy or Pyright is part of many people's workflows. Having to turn it off because of the many...