Changes os.path to pathlib.Path usage

changed args.rules , args.signatures types in handle_common_args.
This commit is contained in:
Aayush Goel
2023-07-06 05:12:50 +05:30
parent 66e2a225d2
commit c0d712acea
22 changed files with 165 additions and 173 deletions

View File

@@ -46,14 +46,14 @@ import io
import sys
import inspect
import logging
import os.path
import binascii
import traceback
from pathlib import Path
import pytest
try:
sys.path.append(os.path.dirname(__file__))
sys.path.append(str(Path(__file__).parent))
import fixtures
from fixtures import *
finally: