Skip to content

Commit

Permalink
Correct missing assignments cauth by pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
milnus committed May 28, 2024
1 parent bc0f1d6 commit b390461
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Corekaburra/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,8 @@ def main():
time_end_passing_gffs = time.time()

double_edge_segements = []
no_acc_segments = []
core_graph = []

time_start_segments_search = time.time()

Expand Down
1 change: 1 addition & 0 deletions Corekaburra/gff_parser.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
import gzip

# pylint: disable=E0606

def open_file_generator(input_file_path):
"""
Expand Down
2 changes: 2 additions & 0 deletions Corekaburra/merge_dicts.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# pylint: disable=E0606

def merge_dicts_counts(parent_dict, merge_object):
"""
Function that can merge two dicts by keys and adding 1 to the value each time key is observed
Expand Down

0 comments on commit b390461

Please sign in to comment.