Skip to content

Commit cd22915

Browse files
Fix flake8 F541: remove empty f-string prefixes
1 parent 68ab778 commit cd22915

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

misp_modules/modules/expansion/flowtriq.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@ def _build_results(ip, data, attribute):
248248
f'Duration: {rec.get("duration_sec", 0)}s - '
249249
f'{rec.get("source_ip_count", 0)} source IPs')
250250
if rec.get('spoofing'):
251-
inc_lines.append(f' Spoofing detected')
251+
inc_lines.append(' Spoofing detected')
252252
if rec.get('botnet'):
253-
inc_lines.append(f' Botnet indicators')
253+
inc_lines.append(' Botnet indicators')
254254

255255
results.append({
256256
'types': ['text'],

0 commit comments

Comments
 (0)