make tqdm optional,
localize .gitignore files
This commit is contained in:
parent
550a72588d
commit
cba9ede657
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +0,0 @@
|
||||
**/*.bin
|
||||
**/machine_code.txt
|
2
firmware/.gitignore
vendored
Normal file
2
firmware/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
**/*.bin
|
||||
**/machine_code*
|
@ -1,6 +1,10 @@
|
||||
from re import M
|
||||
import sys
|
||||
from tqdm import tqdm
|
||||
try:
|
||||
from tqdm import tqdm
|
||||
except:
|
||||
def tqdm(a, *args, **kwargs):
|
||||
return a
|
||||
|
||||
reg_map = {
|
||||
'r0': 0,
|
||||
|
Reference in New Issue
Block a user