Skip to content

Commit

Permalink
fix: remove unused logging import
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Nov 27, 2021
1 parent 1131e62 commit c9c31a6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions github_archive/archive.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import logging # Used for type hints, logging done through `woodchips`
import os
import shutil
import subprocess
Expand Down Expand Up @@ -154,7 +153,7 @@ def run(self):
finish_message = f'GitHub Archive complete! {execution_time}\n'
logger.info(finish_message)

def setup_logger(self) -> logging.Logger:
def setup_logger(self):
"""Sets up a logger to log to console and a file.
- Logging can be called with the `logger` property
Expand Down

0 comments on commit c9c31a6

Please sign in to comment.