Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
zakkarry committed Aug 29, 2024
1 parent 68a4aaf commit 69f5f94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions retraktarr/retraktarr.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python3
""" main script, arguments and executions """
import sys
import argparse
from os import name, path, getenv
import sys
from os import path

from retraktarr.api.arr import ArrAPI
from retraktarr.api.trakt import TraktAPI
Expand All @@ -16,7 +16,7 @@ def main():
path.join(path.dirname(path.abspath(__file__)), "VERSION"), encoding="utf-8"
) as f:
VERSION = f.read()
except OSError as e:
except OSError:
VERSION = "MISSING"

parser = argparse.ArgumentParser(
Expand Down

0 comments on commit 69f5f94

Please sign in to comment.