Skip to content

Commit

Permalink
🚨 Fix unneccessary double list append
Browse files Browse the repository at this point in the history
  • Loading branch information
garlontas committed Nov 7, 2024
1 parent ef6616d commit 89d69cd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pystreamapi/loaders/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
__all__ = []

from pystreamapi.loaders.__csv.__csv_loader import csv
from pystreamapi.loaders.__json.__json_loader import json

__all__.append('csv')
__all__.append('json')
__all__ = ['csv', 'json']

try:
from pystreamapi.loaders.__xml.__xml_loader import xml
Expand Down

0 comments on commit 89d69cd

Please sign in to comment.