Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(CI): mute clippy warnings (python binding errors) temporarily #2469

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions autonomi/src/python.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// TODO: Shall be removed once the python binding warnings resolved
Fixed Show fixed Hide fixed

Check notice

Code scanning / devskim

A "TODO" or similar was left in source code, possibly indicating incomplete functionality Note

Suspicious comment
#![allow(non_local_definitions)]

use crate::client::{
archive::ArchiveAddr,
archive_private::PrivateArchiveAccess,
Expand Down
3 changes: 3 additions & 0 deletions sn_node/src/python.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// TODO: Shall be removed once the python binding warnings resolved

Check notice

Code scanning / devskim

A "TODO" or similar was left in source code, possibly indicating incomplete functionality Note

Suspicious comment
#![allow(non_local_definitions)]

use crate::{NodeBuilder, RunningNode};
use const_hex::FromHex;
use libp2p::{
Expand Down
Loading