lukearran / TvTimeToTrakt

A Python script to import TV Time data into Trakt.TV
MIT License
147 stars 17 forks source link

Possible fix for CSV encoding #44

Closed L11K closed 7 months ago

L11K commented 8 months ago

Hello. Every year or so I try to make progress with my programming adventure, so I hope I managed to contribute something.

Let me know if I did something wrong or further bloated the code.

Fix #21, #29, #31, #36

bambibol commented 7 months ago

Hey! I tried it with these changes and still get this error:

python3 TimeToTrakt.py

    Traceback (most recent call last):
      File "TimeToTrakt.py", line 12, in <module>
        from processor import TVShowProcessor, MovieProcessor
      File "/Users/bambiboland/Downloads/TvTimeToTrakt-main/processor.py", line 12, in <module>
        from searcher import TVShowSearcher, MovieSearcher, TraktTVShow, TraktMovie, TraktItem, TVTimeItem, TVTimeTVShow, \
      File "/Users/bambiboland/Downloads/TvTimeToTrakt-main/searcher.py", line 22, in <module>
        class Title:
      File "/Users/bambiboland/Downloads/TvTimeToTrakt-main/searcher.py", line 49, in Title
        def items_with_same_name(self, items: list[TraktItem]) -> list[TraktItem]:
    TypeError: 'type' object is not subscriptable
L11K commented 7 months ago

Hey! I tried it with these changes and still get this error:

Well, your error is outside the scope of this fix, so it would never work.

See #37