Skip to content

Commit

Permalink
Fix pylint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dlobato committed Sep 13, 2024
1 parent 4525190 commit 3327629
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions client/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ if os.path.exists("/usr/bin/arista-python") and os.path.realpath(

import argparse
import crypt
import datetime
import grp
import io
import json
Expand Down Expand Up @@ -1223,7 +1222,7 @@ class Server:
self._save_file_contents(response, path, url)


def apply_config(config, node):
def apply_config(config):
log("Applying server config")

log_config = config.get("logging", [])
Expand Down Expand Up @@ -1309,7 +1308,7 @@ def main():
node = Node(server)

log("Config retrieved from server")
apply_config(config.json(), node)
apply_config(config.json())

# Checking node on server
log("Collecting node information")
Expand Down

0 comments on commit 3327629

Please sign in to comment.