Skip to content

Commit 1decf75

Browse files
Typo
1 parent 0c7e884 commit 1decf75

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

hello.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env python3
22

3+
# flake8: noqa
4+
35
# fmt: off
46
# import argparse
57
import arrow
@@ -29,16 +31,17 @@
2931
The commented out section is boilerplate for common operations.
3032
Feel free to uncomment and/or delete after first commit.
3133
"""
34+
3235
# env
3336
home = Path.home()
3437
cwd = Path.cwd()
35-
now = arrow.now().format('YYYYMMDD_HHmmss')
38+
now = arrow.now().format("YYYYMMDD_HHmmss")
3639
out = 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)

0 commit comments

Comments
 (0)