From 60389928a006878f8ed42c9cfe656b6103069a4d Mon Sep 17 00:00:00 2001 From: Matie26 Date: Mon, 8 Apr 2024 13:16:04 +0200 Subject: [PATCH] minor changes in comments --- artemis/binds.py | 2 +- artemis/modules/device_identifier.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/artemis/binds.py b/artemis/binds.py index 277f4a852..d16c2075e 100644 --- a/artemis/binds.py +++ b/artemis/binds.py @@ -22,7 +22,7 @@ class TaskType(str, Enum): # {URL: just a HTTP URL. Must have content attached to make further operations faster} URL = "url" - # {device: having an ip, port, ssl, and a device type, e.g. Device.FORTIOS} + # {device: having a host, port, ssl, and a device type, e.g. Device.FORTIOS} DEVICE = "device" diff --git a/artemis/modules/device_identifier.py b/artemis/modules/device_identifier.py index 3b4fbb863..b26e933e9 100644 --- a/artemis/modules/device_identifier.py +++ b/artemis/modules/device_identifier.py @@ -8,7 +8,7 @@ class DeviceIdentifier(ArtemisBase): """ - Tries to identify the device (FortiOS, ...) and produces a SERVICE task with proper type (e.g. Device.FORTIOS) + Tries to identify the device (FortiOS, ...) and produces a DEVICE task with proper type (e.g. Device.FORTIOS) """ identity = "device_identifier"