summaryrefslogtreecommitdiffhomepage
path: root/mullvad-api/src
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2024-02-19 10:07:28 +0100
committerDavid Lönnhager <david.l@mullvad.net>2024-02-19 15:28:02 +0100
commit07bf94820842bd3a034ca4e9b32641d7ef1c5e78 (patch)
treeee442db468190aeccc151ed21749024f04b1b265 /mullvad-api/src
parent9c9b384adb6f3b7bc719c3a9f9c56f5ff8da4ceb (diff)
downloadmullvadvpn-07bf94820842bd3a034ca4e9b32641d7ef1c5e78.tar.xz
mullvadvpn-07bf94820842bd3a034ca4e9b32641d7ef1c5e78.zip
Fix redundant imports
Diffstat (limited to 'mullvad-api/src')
-rw-r--r--mullvad-api/src/bin/relay_list.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mullvad-api/src/bin/relay_list.rs b/mullvad-api/src/bin/relay_list.rs
index 8cb615d77f..def32303ea 100644
--- a/mullvad-api/src/bin/relay_list.rs
+++ b/mullvad-api/src/bin/relay_list.rs
@@ -2,7 +2,7 @@
//! Used by the installer artifact packer to bundle the latest available
//! relay list at the time of creating the installer.
-use mullvad_api::{self, proxy::ApiConnectionMode, rest::Error as RestError, RelayListProxy};
+use mullvad_api::{proxy::ApiConnectionMode, rest::Error as RestError, RelayListProxy};
use std::process;
use talpid_types::ErrorExt;