Skip to content

Commit

Permalink
Resolve unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfofdalalst committed Nov 11, 2021
1 parent 3dc3b53 commit cd05963
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pystego/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import argparse
import logging
import sys
from sys import argv as _argv

from . import ascii_art
from .stego import encode,decode
Expand All @@ -16,7 +16,7 @@
args = parser.parse_args()

def main():
if len(sys.argv) == 1:
if len(_argv) == 1:
print('Welcome to,', ascii_art, sep='\n')
parser.print_help()
print('\nrefer to https://github.com/GuptaAyush19/pystego for more info')
Expand Down

0 comments on commit cd05963

Please sign in to comment.