File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env python3
22
3+ # flake8: noqa
4+
35# fmt: off
46# import argparse
57import arrow
2931The commented out section is boilerplate for common operations.
3032Feel free to uncomment and/or delete after first commit.
3133"""
34+
3235# env
3336home = Path .home ()
3437cwd = Path .cwd ()
35- now = arrow .now ().format (' YYYYMMDD_HHmmss' )
38+ now = arrow .now ().format (" YYYYMMDD_HHmmss" )
3639out = f"{ cwd } /formatted/results_{ now } .csv"
3740
38- # env vars (hierachy : args, env, .env)
39- HOST = config (' HOST' , default = ' localhost' )
40- USER = config (' USER' )
41- PASS = config (' PASS' )
41+ # env vars (hierarchy : args, env, .env)
42+ HOST = config (" HOST" , default = " localhost" )
43+ USER = config (" USER" )
44+ PASS = config (" PASS" )
4245
4346## verbose icecream
4447# ic.configureOutput(includeContext=True)
You can’t perform that action at this time.
0 commit comments