Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
quick fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mia-stein committed Mar 14, 2024
1 parent d112854 commit 6275a92
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion boilerplates/click/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version='0.0.1',
packages=find_packages(),
include_package_data=True,
author='steinkirch',
author='Mia Stein',
install_requires=[
'Click',
],
Expand Down
2 changes: 1 addition & 1 deletion boilerplates/project_boilerplate/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version='0.1',
packages=find_packages(include=['src', \
'src.utils']),
author="bt3gl",
author="mia stein",
install_requires=['python-dotenv'],
entry_points={
'console_scripts': ['my_package=src.main:run']
Expand Down
2 changes: 1 addition & 1 deletion boilerplates/tests/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version='0.0.1',
packages=find_packages(),
include_package_data=True,
author='steinkirch',
author='Mia Stein',
install_requires=[
],
entry_points='''
Expand Down
2 changes: 1 addition & 1 deletion web2-projects/enconding-decimals/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version='0.0.1',
packages=find_packages(),
include_package_data=True,
author='steinkirch',
author='Mia Stein',
install_requires=[
],
entry_points='''
Expand Down
2 changes: 1 addition & 1 deletion web2-projects/other-puzzles/falling-rain-On.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
right. Your solution will return the total amount of width-times-height
retained by the terrain. You may assume that heights are non-negative integers.
Solution by bt3gl
Solution by Mia Stein
'''

def _create_wall_array(size) -> list:
Expand Down
2 changes: 1 addition & 1 deletion web2-projects/other-puzzles/falling-rain-On2.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
right. Your solution will return the total amount of width-times-height
retained by the terrain. You may assume that heights are non-negative integers.
Solution by bt3gl
Solution by Mia Stein
'''


Expand Down
2 changes: 1 addition & 1 deletion web3-toolkit/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "web3-python-toolkit"
version = "0.1.0"
description="toolkit for web3"
authors=["bt3gl"]
authors=["mia stein"]
readme = "README.md"
packages = [{include = "scripts"}]

Expand Down
2 changes: 1 addition & 1 deletion web3-toolkit/scripts/decode_calldata.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
# author: steinkirch
# author: Mia Stein

from utils.strings import pprint
from utils.os import load_config
Expand Down
2 changes: 1 addition & 1 deletion web3-toolkit/scripts/get_contracts_deployed.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
# author: steinkirch
# author: Mia Stein

import os
import ethereumetl
Expand Down
2 changes: 1 addition & 1 deletion web3-toolkit/scripts/get_deep_block_data.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
# author: steinkirch
# author: Mia Stein

from utils.strings import pprint
from utils.os import load_config
Expand Down
2 changes: 1 addition & 1 deletion web3-toolkit/scripts/get_deep_tx_data.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
# author: steinkirch
# author: Mia Stein

from utils.strings import pprint
from utils.os import load_config
Expand Down
2 changes: 1 addition & 1 deletion web3-toolkit/scripts/get_reserve_history_by_block.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
# author: steinkirch
# author: Mia Stein

from utils.os import load_config, open_json, log_info
from utils.web3_wrapper import Web3Wrapper
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
# author: steinkirch
# author: Mia Stein
#
############################################################################################
#
Expand Down
2 changes: 1 addition & 1 deletion web3-toolkit/scripts/scrape_transfer_events.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
# author: steinkirch
# author: Mia Stein
#
############################################################################################
#
Expand Down
2 changes: 1 addition & 1 deletion web3-toolkit/scripts/utils/arithmetics.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# arithmetics.py
# This class implements math methods used by the other classes.
# author: steinkirch
# author: Mia Stein


from decimal import Decimal, getcontext
Expand Down
2 changes: 1 addition & 1 deletion web3-toolkit/scripts/utils/plots.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- encoding: utf-8 -*-
# This class implements plot scripts
# author: steinkirch
# author: Mia Stein

import pandas as pd
from utils.os import exit_with_error, log_error
Expand Down
2 changes: 1 addition & 1 deletion web3-toolkit/scripts/utils/strings.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- encoding: utf-8 -*-
# This class implements string methods used by the other classes.
# author: steinkirch
# author: Mia Stein

from pprint import PrettyPrinter

Expand Down
2 changes: 1 addition & 1 deletion web3-toolkit/scripts/utils/web3_wrapper.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- encoding: utf-8 -*-
# This class implements an (ongoing) wrapper for web3 libs.
# author: steinkirch
# author: Mia Stein

from web3 import Web3, HTTPProvider, WebsocketProvider, IPCProvider
from web3.middleware import geth_poa_middleware
Expand Down

0 comments on commit 6275a92

Please sign in to comment.