mirror of
https://github.com/VLSIDA/OpenRAM.git
synced 2026-09-02 02:57:53 +02:00
Use library imports globally
This commit is contained in:
@@ -5,10 +5,11 @@
|
||||
# (acting for and on behalf of Oklahoma State University)
|
||||
# All rights reserved.
|
||||
#
|
||||
from pathlib import Path
|
||||
import glob
|
||||
import os
|
||||
import sys
|
||||
import os
|
||||
import glob
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
# This is the path to the directory you would like to search
|
||||
# This directory is searched recursively for .html files
|
||||
|
||||
@@ -5,10 +5,10 @@
|
||||
# (acting for and on behalf of Oklahoma State University)
|
||||
# All rights reserved.
|
||||
#
|
||||
from .table_gen import *
|
||||
import os
|
||||
import base64
|
||||
from globals import OPTS
|
||||
from openram import OPTS
|
||||
from .table_gen import *
|
||||
|
||||
|
||||
class datasheet():
|
||||
|
||||
@@ -15,10 +15,10 @@ a web friendly html datasheet.
|
||||
# Improve css
|
||||
|
||||
|
||||
from globals import OPTS
|
||||
import os
|
||||
import math
|
||||
import csv
|
||||
from openram import OPTS
|
||||
from .datasheet import datasheet
|
||||
from .table_gen import table_gen
|
||||
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
# All rights reserved.
|
||||
#
|
||||
|
||||
|
||||
class table_gen:
|
||||
"""small library of functions to generate the html tables"""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user