mirror of
https://github.com/cheat/cheat.git
synced 2025-09-09 13:32:54 +02:00
Refactored (3)
Removed unnecessary `import` calls.
This commit is contained in:
@ -2,15 +2,11 @@ import io
|
||||
import os
|
||||
import shutil
|
||||
|
||||
from cheat.editor import Editor
|
||||
from cheat.utils import Utils
|
||||
|
||||
|
||||
class Sheet:
|
||||
|
||||
def __init__(self, sheets, utils, editor):
|
||||
def __init__(self, sheets, editor):
|
||||
self._sheets = sheets
|
||||
self._utils = utils
|
||||
self._editor = editor
|
||||
|
||||
def copy(self, current_sheet_path, new_sheet_path):
|
||||
|
@ -1,6 +1,4 @@
|
||||
from __future__ import print_function
|
||||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user