Skip to content

Commit

Permalink
Resolve documentation code typo.
Browse files Browse the repository at this point in the history
This commit by Brooklyn Bear @anoojpatel (Anooj Patel) resolves
a catastrophic missing closing parens in a recently added code
snippet. Thanks so much, Anooj! (*Fast-actin' action!*)
  • Loading branch information
anoojpatel committed Feb 6, 2024
1 parent 79db992 commit bebad05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ infectious diseases is *that* code? You're about to find out.
from beartype import BeartypeConf # <-- this isn't your fault
from beartype.claw import beartype_all, beartype_this_package # <-- you didn't sign up for this
beartype_this_package() # <-- raise exceptions in your code
beartype_all(conf=BeartypeConf(violation_type=UserWarning) # <-- emit warnings from other code
beartype_all(conf=BeartypeConf(violation_type=UserWarning)) # <-- emit warnings from other code
Beartype now implicitly type-checks *all* annotated classes, callables, and
variable assignments across *all* submodules of *all* packages. When **your**
Expand Down

0 comments on commit bebad05

Please sign in to comment.