Skip to content

Commit

Permalink
style: Clean code (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeDongGeon1996 authored Aug 13, 2024
1 parent 283c83f commit 2cd433f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ ignore-imports=yes

disable=
C0103,
C0114,
C0115,
C0116,
C0301,
C0321,
C0413,
E0401,
W0212,
Expand Down
2 changes: 1 addition & 1 deletion stock_indicators/indicators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from .fisher_transform import (get_fisher_transform)
from .force_index import (get_force_index)
from .fractal import (get_fractal)
from .gator import(get_gator)
from .gator import (get_gator)
from .heikin_ashi import (get_heikin_ashi)
from .hma import (get_hma)
from .ht_trendline import (get_ht_trendline)
Expand Down
1 change: 0 additions & 1 deletion stock_indicators/indicators/common/quote.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,3 @@ def use(cls, quotes: Iterable["Quote"], candle_part: CandlePart):

class Quote(generate_cs_inherited_class(_Quote, CsQuote)):
"""A single dated quote containing OHLCV elements."""
pass

0 comments on commit 2cd433f

Please sign in to comment.