Skip to content

Commit ec8abe6

Browse files
committed
Formating
1 parent 5889e55 commit ec8abe6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

nxc/protocols/ftp/database.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def get_hosts(self, filter_term=None):
222222
# if we're filtering by host
223223
elif filter_term and filter_term != "":
224224
q = format_host_query(q, filter_term, self.HostsTable)
225-
225+
226226
results = self.db_execute(q).all()
227227
nxc_logger.debug(f"FTP get_hosts() - results: {results}")
228228
return results

nxc/protocols/smb/database.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ def get_hosts(self, filter_term=None, domain=None):
470470
# if we're filtering by ip/hostname
471471
elif filter_term and filter_term != "":
472472
q = format_host_query(q, filter_term, self.HostsTable)
473-
473+
474474
results = self.db_execute(q).all()
475475
nxc_logger.debug(f"smb hosts() - results: {results}")
476476
return results

nxc/protocols/ssh/database.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ def get_hosts(self, filter_term=None):
349349
# if we're filtering by host
350350
elif filter_term and filter_term != "":
351351
q = format_host_query(q, filter_term, self.HostsTable)
352-
352+
353353
results = self.db_execute(q).all()
354354
nxc_logger.debug(f"SSH get_hosts() - results: {results}")
355355
return results

nxc/protocols/winrm/database.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def get_hosts(self, filter_term=None):
309309
# if we're filtering by ip/hostname
310310
elif filter_term and filter_term != "":
311311
q = format_host_query(q, filter_term, self.HostsTable)
312-
312+
313313
results = self.db_execute(q).all()
314314
nxc_logger.debug(f"winrm get_hosts() - results: {results}")
315315
return results

0 commit comments

Comments
 (0)