Skip to content

Commit

Permalink
chore: disable pylint messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieboldianus committed May 29, 2019
1 parent f0c3337 commit c337eaa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lbsntransform/classes/helper_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
Collection of helper functions being used in lbsntransform package.
"""

# pylint: disable=no-member

import re
import csv
Expand All @@ -29,6 +28,8 @@
lbsnPostReaction, \
lbsnRelationship

# pylint: disable=no-member


class HelperFunctions():

Expand Down Expand Up @@ -545,12 +546,12 @@ def __init__(self):

def before(self):
global get_objects
for i in get_objects():
for i in get_objects(): # pylint: disable=undefined-variable
self._before[type(i)] += 1

def after(self):
global get_objects
for i in get_objects():
for i in get_objects(): # pylint: disable=undefined-variable
self._after[type(i)] += 1

def report(self):
Expand All @@ -564,7 +565,7 @@ def report(self):
def printType(self, type, max=100):
x = 0
toplist = []
for obj in get_objects():
for obj in get_objects(): # pylint: disable=undefined-variable
if isinstance(obj, type):
x += 1
if x < max:
Expand Down
2 changes: 2 additions & 0 deletions lbsntransform/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
Config module for parsing input args for lbsntransform package.
"""

# pylint: disable=no-member

from pathlib import Path
import argparse
import os
Expand Down

0 comments on commit c337eaa

Please sign in to comment.