chore: fix warnings

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-08-25 17:27:31 +02:00
parent b01543a8b9
commit b3aedfb411
5 changed files with 4 additions and 37 deletions

View File

@@ -79,7 +79,7 @@ impl Cli {
}
async fn add_project_commands(self) -> anyhow::Result<Self> {
if let Some(project) = self.cuddle.state.project.as_ref() {
if let Some(_project) = self.cuddle.state.project.as_ref() {
// Add project level commands
}
@@ -87,7 +87,7 @@ impl Cli {
}
async fn add_plan_commands(self) -> anyhow::Result<Self> {
if let Some(plan) = self.cuddle.state.plan.as_ref() {
if let Some(_plan) = self.cuddle.state.plan.as_ref() {
// Add plan level commands
}