Skip to content

Commit

Permalink
pep8 speaks fixes and changelog update
Browse files Browse the repository at this point in the history
  • Loading branch information
cdgriffith committed Mar 17, 2020
1 parent 3dd5f2b commit ae3938c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .pep8speaks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
scanner:
diff_only: True
linter: flake8

flake8:
max-line-length: 120 # Default is 79 in PEP 8
ignore: # Errors and warnings to ignore
- F401
- F403
- F405
- W503
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ Version 1.7
-----------

- Adding support for PCAPNG files (thanks to bannsec)
- Adding support for numerous other files updated by Gary C. Kessler
- Adding script for parsing FTK GCK sigs
- Changing test suites to github workflows instead of TravisCI
- Removing official support, new packages and test for python 2

Version 1.6
-----------
Expand Down
2 changes: 1 addition & 1 deletion scripts/parse_ftk_kessler_sigs.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@
if ext != "(none)":
print("\t\t{},".format(json.dumps([sig['SIG'], offset, ".{}".format(ext), "", sig['DESCRIPTION']])))
else:
print("\t\t{},".format(json.dumps([sig['SIG'], offset, "", "", sig['DESCRIPTION']])))
print("\t\t{},".format(json.dumps([sig['SIG'], offset, "", "", sig['DESCRIPTION']])))

0 comments on commit ae3938c

Please sign in to comment.