Skip to content

Commit

Permalink
More linter cheer
Browse files Browse the repository at this point in the history
  • Loading branch information
damies13 committed Feb 18, 2024
1 parent abaec04 commit f277b47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
19 changes: 1 addition & 18 deletions rfswarm_agent/rfswarm_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ def findlibraries_new(self):
installed_packages = importlib.metadata.distributions()
for i in installed_packages:
# if "robot" in i.metadata["Name"]:
# print(dist.metadata["Name"], dist.version)
# print(dist.metadata["Name"], dist.version)
if i.metadata["Name"].strip() == "robotframework":
found = 1
self.agentproperties["RobotFramework"] = i.version
Expand All @@ -551,23 +551,6 @@ def findlibraries_new(self):
self.debugmsg(0, "Perhaps try: 'pip install robotframework'")
raise Exception("RobotFramework is not installed")



# robotframework-sshlibrary 3.8.0
# robotframework-browser 11.1.1
# robotframework-seleniumlibrary 6.0.0
# robotframework-jsonvalidator 2.0.0
# robotframework 6.0.2
# robotframework-imagehorizonlibrary 1.0
# robotframework-listenerlibrary 1.0.3
# robotframework-SikuliLibrary 2.0.0
# robotframework-pythonlibcore 3.0.0
# robotframework-faker 5.0.0
# robotframework-datadriver 1.7.0
# robotframework-perfmon 0.1
# robotframework-requests 0.9.4
# robotframework-assertion-engine 0.2.0

def tick_counter(self):
#
# This function is simply a way to roughly measure the number of agents being used
Expand Down
2 changes: 1 addition & 1 deletion rfswarm_manager/rfswarm.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import urllib.parse
import webbrowser
from datetime import datetime, timezone
from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer, HTTPServer
from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer
from operator import itemgetter
from typing import Any

Expand Down

0 comments on commit f277b47

Please sign in to comment.