Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurmco committed Jan 21, 2025
1 parent bb6d7b7 commit e3a9cc0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/presenter/PresenterNetwork.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ bool NetworkCreator::checkIfInterfaceRegistered(std::string_view interface)
return false;
}

std::size_t NetworkCreator::getSelectedInterfaces() { return m_networks.size(); }
std::size_t NetworkCreator::getSelectedInterfaces()
{
return m_networks.size();
}

void NetworkCreator::saveNetworksToModel(Cluster& model)
{
Expand Down

0 comments on commit e3a9cc0

Please sign in to comment.