This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import argparse | |
import re | |
import pathspec | |
import subprocess | |
from typing import Optional | |
from openai import OpenAI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hey, I'm tensojka-8470346 and I have contributed to the Semaphore V4 Ceremony. | |
The following are my contribution signatures: | |
Circuit # 1 (semaphorev4-1) | |
Contributor # 117 | |
Contribution Hash: 0f0f7761 d1aef881 83978921 0599fce0 | |
be19492b 6ab9f847 ce4cf28b 270e55ba | |
acf538b7 2d404187 6808623e 1833031e | |
5e8b078f 048562b5 50242a14 8e74894e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import argparse | |
import re | |
import pathspec | |
import subprocess | |
def load_gitignore(root_dir): | |
gitignore = os.path.join(root_dir, '.gitignore') | |
try: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import pathspec | |
def load_gitignore(root_dir): | |
gitignore = os.path.join(root_dir, '.gitignore') | |
if os.path.exists(gitignore): | |
with open(gitignore, 'r') as file: | |
spec = pathspec.PathSpec.from_lines('gitwildmatch', file) | |
else: |